nativescript
Version:
Command-line interface for building NativeScript projects
13 lines • 497 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.color = void 0;
exports.stripColors = stripColors;
// using chalk as some of our other dependencies are already using it...
// exporting from here so we can easily refactor to a different color library if needed
const ansi = require("ansi-colors");
const chalk = require("chalk");
function stripColors(formatStr) {
return ansi.stripColor(formatStr);
}
exports.color = chalk;
//# sourceMappingURL=color.js.map
;