UNPKG

@ribajs/luxon

Version:

Luxon (time library) module for Riba.js

19 lines (17 loc) 554 B
import { Formatter } from "@ribajs/core"; import { Interval } from "luxon"; /** * Return whether this Interval's start is adjacent to the specified Interval's end. */ export const LuxonIntervalAbutsEndFormatter: Formatter = { name: "lx-interval-abuts-end", /** * @see https://moment.github.io/luxon/docs/class/src/datetime.js~DateTime.html#instance-method-abutsEnd * @param target Interval * @param other Interval * @returns boolean */ read(target: Interval, other: Interval): boolean { return target.abutsEnd(other); }, };