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.

24 lines (23 loc) 354 B
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" ]; export { MS_IN_DAY as M, MS_IN_HOUR as a, MS_IN_MINUTE as b, MS_IN_SECOND as c, rangeOfUnits as r };