UNPKG

@ribajs/moment

Version:

Moment.js module for Riba.js

20 lines (18 loc) 519 B
import { Formatter } from "@ribajs/core"; import { Duration } from "moment"; /** * Gets the length of the duration in milliseconds. * @see https://momentjs.com/docs/#/durations/milliseconds/ * @param duration */ export const AsMillisecondsFormatter: Formatter = { name: "asMilliseconds", /** * Gets the length of the duration in milliseconds. * @see https://momentjs.com/docs/#/durations/milliseconds/ * @param duration */ read(duration: Duration) { return duration.asMilliseconds(); }, };