UNPKG

@ribajs/core

Version:

Core module of Riba.js

11 lines (10 loc) 180 B
import { Formatter } from "../../types/formatter.js"; /** * a === b */ export const eqFormatter: Formatter = { name: "eq", read(a: any, b: any) { return a === b; }, };