UNPKG

asenv

Version:
19 lines (12 loc) 218 B
'use strict' const { getEnv, setEnv, isProduction } = require('asenv') { let env = getEnv() console.log('env=', env) /* ... */ setEnv('production') /* ... */ if (isProduction()) { /* ... */ } }