UNPKG

@ribajs/core

Version:

Core module of Riba.js

12 lines (11 loc) 196 B
import { Formatter } from "../../types/formatter.js"; /** * lower than * a < b */ export const ltFormatter: Formatter = { name: "lt", read(a: number, b: number) { return a < b; }, };