Closed ghost closed 9 years ago
Currently, using the preciseDiff method with the latest version of Moment (2.10.2) produces this deprecation warning in the console:
preciseDiff
Deprecation warning: moment().subtract(period, number) is deprecated. Please use moment().subtract(number, period).
This pull request switches to the moment().subtract(number, period) syntax, which eliminates the warning.
moment().subtract(number, period)
Thanks!
Currently, using the
preciseDiff
method with the latest version of Moment (2.10.2) produces this deprecation warning in the console:This pull request switches to the
moment().subtract(number, period)
syntax, which eliminates the warning.