UNPKG

@ribajs/moment

Version:

Moment.js module for Riba.js

13 lines (11 loc) 335 B
import { Formatter } from "@ribajs/core"; import moment from "moment"; /** * Returns the moment.js object representing of the given JS Date. (use this method afterwards with the formatter `map`) */ export const ToMomentFormatter: Formatter = { name: "toMoment", read(date: moment.MomentInput) { return moment(date); }, };