Last active
April 8, 2018 02:33
-
-
Save pbojinov/4b71b9e2217c93641855bcab5c9fad20 to your computer and use it in GitHub Desktop.
Date comparison with Luxon.js - https://github.com/moment/luxon/blob/master/docs/math.md#diffs
This file contains 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
var DateTime = luxon.DateTime; | |
var then = DateTime.fromISO('2017-07-04T15:16:14.000Z'); | |
var now = DateTime.local(); | |
var diff = then.diff(now, 'days'); | |
diff.toObject(); // => {days: 150.30536171296296} || diff.as('days') => 150 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment