We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
if the user inputs the year in short form like this: dd.mm.yy it is automatically corrected to: dd.mm.yyyy
there should be an option to control which years are put in which centuries
At the moment if you input: 11.12.59 it is corrected to 11.12.2059 if you input: 11.12.60 it is corrected to 11.12.1960
maybe it could be controlled via years
e.g. 100 years (2019-100=1919) >= currentYear 19 -> 1919 20 -> 1920 88 -> 1988 < currentYear 18 -> 2018 4 -> 2004 12-> 2012
https://jsfiddle.net/mar7xzvu/
The text was updated successfully, but these errors were encountered:
Prepared in #527
Sorry, something went wrong.
d06348e
lubber-de
No branches or pull requests
Feature Request
Description
if the user inputs the year in short form like this: dd.mm.yy
it is automatically corrected to: dd.mm.yyyy
there should be an option to control which years are put in which centuries
At the moment if you input:
11.12.59 it is corrected to 11.12.2059
if you input:
11.12.60 it is corrected to 11.12.1960
Example
maybe it could be controlled via years
e.g. 100 years (2019-100=1919)
>= currentYear
19 -> 1919
20 -> 1920
88 -> 1988
< currentYear
18 -> 2018
4 -> 2004
12-> 2012
Testcase
https://jsfiddle.net/mar7xzvu/
The text was updated successfully, but these errors were encountered: