UNPKG

putout

Version:

🐊 Pluggable and configurable code transformer with built-in ESLint, Babel and support of js, jsx, typescript, flow, markdown, yaml and json

13 lines (8 loc) 207 B
import {styleText} from 'node:util'; const red = (a) => styleText('red', a); const bgBlueBright = (a) => styleText('bgBlueBright', a); const chalk = { red, bgBlueBright, }; export default chalk;