@clickup/ent-framework
Version:
A PostgreSQL graph-database-alike library with microsharding and row-level security
11 lines • 461 B
JavaScript
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.highlightIf = highlightIf;
const chalk_1 = __importDefault(require("chalk"));
function highlightIf(message, color, condition) {
return condition() ? chalk_1.default[color](message) : message;
}
//# sourceMappingURL=highlightIf.js.map
;