UNPKG

@ribajs/core

Version:

Core module of Riba.js

13 lines (11 loc) 258 B
import { Formatter } from "@ribajs/core"; export const debugFormatter: Formatter = { name: "debug", read( toPrint: any, level: "log" | "debug" | "info" | "error" | "warn" = "debug", ) { console[level](toPrint); return toPrint; }, };