dool-build
Version:
d-band tool & dev tool
19 lines (16 loc) • 333 B
JavaScript
;
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';
}