Last active
April 22, 2018 19:29
-
-
Save lukas-h/2894d984d641223326a91767b78bdfe2 to your computer and use it in GitHub Desktop.
moment.js in Dart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new DateTime.now() | |
new DateTime(2018, 4, 22) | |
DateTime.parse("2018-04-22 21:13:15") | |
DateTime.parse("+20180422") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
moment() // Jetzt | |
moment([2018, 4, 22]) | |
moment("2018-04-22 21:13:15") | |
moment("+20180422") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment