UNPKG

@ribajs/core

Version:

Core module of Riba.js

12 lines (11 loc) 198 B
import { Formatter } from "../../types/formatter.js"; /** * greater than * a > b */ export const gtFormatter: Formatter = { name: "gt", read(a: number, b: number) { return a > b; }, };