UNPKG

@ribajs/core

Version:

Core module of Riba.js

11 lines (10 loc) 168 B
import { Formatter } from "../../types/formatter.js"; /** * !a */ export const notFormatter: Formatter = { name: "not", read(a: boolean) { return !a; }, };