Files
vuepress/packages/@vuepress/shared-utils/lib/env.js
T
2018-11-25 23:36:30 +08:00

15 lines
208 B
JavaScript

class ENV {
constructor () {
this.isDebug = false
this.isTest = false
this.isProduction = false
}
setOptions (options) {
Object.assign(this, options)
}
}
module.exports = new ENV()