inceptum
Version:
hipages take on the foundational library for enterprise-grade apps written in NodeJS
17 lines • 482 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/* tslint:disable:prefer-function-over-method */
const config = require("config");
class Config {
hasConfig(key) {
return config.has(key);
}
getConfig(key, defaultValue) {
if (!config.has(key) && defaultValue !== undefined) {
return defaultValue;
}
return config.get(key);
}
}
exports.default = Config;
//# sourceMappingURL=ConfigProvider.js.map