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
let d = spacetime('june 2nd 1892') d.every('year', 'june 2nd 1902').forEach((y) => { console.log(y.format('iso-short')) }) /* 1893-01-01 1894-01-01 1894-12-31 //day shy 1896-12-31 1898-12-31 1900-12-31 1894-12-31 */
The text was updated successfully, but these errors were encountered:
this appears to be sensitive to current minute
let d = spacetime('1895-01-01') //.startOf('day') d = d.minute(0) console.log(d.format('')) //1894-12-31
Sorry, something went wrong.
closer to the issue:
let d = spacetime('1895-01-01').startOf('day') console.log(d.format('nice-full')) //January 1st, 12:26am
found a 17-minute DST change. I think it may be the first DST change in the Americas. https://www.timeanddate.com/time/change/canada/toronto?year=1895
No branches or pull requests
The text was updated successfully, but these errors were encountered: