UNPKG

@ribajs/moment

Version:

Moment.js module for Riba.js

21 lines (19 loc) 539 B
import { Formatter } from "@ribajs/core"; import { Duration, Moment } from "moment"; /** * Gets or sets the day of the week. * @see https://momentjs.com/docs/#/get-set/date/ * @see https://momentjs.com/docs/#/durations/days/ */ export const DaysFormatter: Formatter = { name: "days", /** * Gets or sets the day of the week. * @see https://momentjs.com/docs/#/get-set/date/ * @see https://momentjs.com/docs/#/durations/days/ * @param duration */ read(target: Moment | Duration) { return target.days(); }, };