alks
Version:
CLI for working with ALKS
11 lines • 480 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.deprecationWarning = void 0;
const cli_color_1 = require("cli-color");
const underscore_1 = require("underscore");
function deprecationWarning(msg) {
msg = `\nWarning: ${(0, underscore_1.isEmpty)(msg) ? 'This command is being deprecated.' : msg}`;
console.error(cli_color_1.red.bold(msg));
}
exports.deprecationWarning = deprecationWarning;
//# sourceMappingURL=deprecationWarning.js.map