UNPKG

javascript-time-ago

Version:

Localized relative date/time formatting

10 lines 343 B
import { getSecondsInUnit } from './units.js'; export default function getStepDenominator(step) { // `factor` is a legacy property. if (step.factor !== undefined) { return step.factor; } // "unit" is now called "formatAs". return getSecondsInUnit(step.unit || step.formatAs) || 1; } //# sourceMappingURL=getStepDenominator.js.map