UNPKG

@vuepress/shared-utils

Version:
13 lines (12 loc) 281 B
"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();