nx
Version:
9 lines (8 loc) • 407 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MS_PER_DAY = exports.MS_PER_MINUTE = exports.MS_PER_SECOND = void 0;
// Shared time constants. The window UNIT differs per PM (npm: days, pnpm/yarn:
// minutes, bun: seconds); each reader converts its value to ms using these.
exports.MS_PER_SECOND = 1_000;
exports.MS_PER_MINUTE = 60_000;
exports.MS_PER_DAY = 86_400_000;