@ribajs/moment
Version:
Moment.js module for Riba.js
19 lines (17 loc) • 444 B
text/typescript
import { Formatter } from "@ribajs/core";
import { Duration } from "moment";
/**
* Gets the length of the duration in days.
* @see https://momentjs.com/docs/#/durations/days/
*/
export const AsDaysFormatter: Formatter = {
name: "asDays",
/**
* Gets the length of the duration in days.
* @see https://momentjs.com/docs/#/durations/days/
* @param duration
*/
read(duration: Duration) {
return duration.asDays();
},
};