UNPKG

date-manip

Version:

A lightweight JavaScript date utility library that provides modularity, high performance, and additional features. It supports various date operations, including date addition and subtraction, formatting, comparison, etc.

23 lines (22 loc) 432 B
"use strict"; const MS_IN_SECOND = 1e3; const MS_IN_MINUTE = 6e4; const MS_IN_HOUR = 36e5; const MS_IN_DAY = 864e5; const rangeOfUnits = [ "time", "year", "month", "date", "day", "hour", "minute", "second", "millisecond", "utcOffset" ]; exports.MS_IN_DAY = MS_IN_DAY; exports.MS_IN_HOUR = MS_IN_HOUR; exports.MS_IN_MINUTE = MS_IN_MINUTE; exports.MS_IN_SECOND = MS_IN_SECOND; exports.rangeOfUnits = rangeOfUnits;