UNPKG

@thi.ng/text-format

Version:

Customizable color text formatting with presets for ANSI & HTML

10 lines (9 loc) 269 B
import { FMT_ANSI16 } from "./ansi.js"; import { defFormatPresets } from "./format.js"; import { FMT_NONE } from "./none.js"; const PRESET_ANSI16 = defFormatPresets(FMT_ANSI16); const PRESET_NONE = defFormatPresets(FMT_NONE); export { PRESET_ANSI16, PRESET_NONE };