UNPKG

@ribajs/core

Version:

Core module of Riba.js

11 lines (10 loc) 188 B
import { Formatter } from "../../types/formatter.js"; /** * a && b */ export const andFormatter: Formatter = { name: "and", read(a: boolean, b: boolean) { return a && b; }, };