nlu
Version:
Use this package to link your projects together for local development.
13 lines (12 loc) • 345 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function default_1(opts, conf, key, value) {
if (!key) {
return console.log(conf);
}
if (key in conf) {
return console.log(conf[key]);
}
console.log(`(NLU global config does not have key: "${key}")`);
}
exports.default = default_1;