detect-shells
Version:
Detect shells installed on a system
17 lines (16 loc) • 389 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
error: function (...args) {
// console.error(...args);
},
warn: function (...args) {
// console.warn(...args);
},
info: function (...args) {
// console.info(...args);
},
debug: function (...args) {
// console.log(...args);
}
};