@roit/roit-environment
Version:
Facilitate environment management in node applications
20 lines (19 loc) • 506 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class EnvOptionsSetter {
constructor() { }
static getInstance() {
return this.instance;
}
static options(option) {
this.getInstance().option = option;
}
static getOptions() {
return this.getInstance().option;
}
static reset() {
this.getInstance().option = null;
}
}
EnvOptionsSetter.instance = new EnvOptionsSetter;
exports.EnvOptionsSetter = EnvOptionsSetter;