2021-02-11 21:31:41 +08:00

13 lines
281 B
JavaScript

"use strict";
class ENV {
constructor() {
this.isDebug = false;
this.isTest = process.env.NODE_ENV === 'test' || false;
this.isProduction = false;
}
setOptions(options) {
Object.assign(this, options);
}
}
module.exports = new ENV();