UNPKG

@ribajs/core

Version:

Core module of Riba.js

11 lines (10 loc) 186 B
import { Formatter } from "../../types/formatter.js"; /** * a || b */ export const orFormatter: Formatter = { name: "or", read(a: boolean, b: boolean) { return a || b; }, };