UNPKG

@ribajs/core

Version:

Core module of Riba.js

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