approvals
Version:
Approval Tests Library - Capturing Human Intelligence
20 lines (19 loc) • 527 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.yellowText = yellowText;
exports.redText = redText;
exports.greenText = greenText;
exports.grayText = grayText;
const ansi_colors_1 = require("ansi-colors");
function yellowText(text) {
return (0, ansi_colors_1.yellow)(text);
}
function redText(text) {
return (0, ansi_colors_1.red)(text);
}
function greenText(text) {
return (0, ansi_colors_1.green)(text);
}
function grayText(text) {
return (0, ansi_colors_1.gray)(text);
}