UNPKG

@ribajs/core

Version:

Core module of Riba.js

11 lines (10 loc) 214 B
import { Formatter } from "../../types/formatter.js"; /** * a ? b : c */ export const ternaryFormatter: Formatter = { name: "ternary", read(condition: any, yes, no) { return condition ? yes : no; }, };