-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Year > 9999? #9
Comments
See section 4.6 years exceeding four digits. The syntax is now with a capital |
Shouldn't Because right now it seems a little confusing that: let date = edtf('9999').next()
let edtfString = date.edtf // '10000'
let dateCopy = edtf(edtfString) triggers an error since "10000" is an incorrect EDTF notation, if I understand correctly? |
Hmm, that's a good question. I think .next() should probably still return a |
EDTF L1 (not the WD) accepts
y170000002
as a valid date, how must I pass that toedtf.js
? I've tried removing the leadingy
but that doesn't do it.The text was updated successfully, but these errors were encountered: