UNPKG

dool-build

Version:
19 lines (16 loc) 333 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.green = green; exports.cyan = cyan; exports.red = red; function green(str) { return '\x1B[32m' + str + '\x1B[39m'; } function cyan(str) { return '\x1B[36m' + str + '\x1B[39m'; } function red(str) { return '\x1B[31m' + str + '\x1B[39m'; }