Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/wincloud_gateway/node_modules/std-env/ drwxr-xr-x | |
| Viewing file: Select action/file-type: // Gather initial information
var isCI = false
var debug = false
var tty = false
var nodeENV = 'development'
var browser = typeof window !== 'undefined'
var platform = ''
var minimal = false
// Boolean helper
function toBoolean(val) {
return (!val || val === 'false') ? false : true
}
// Process dependent
if (typeof process !== 'undefined') {
// Platform
if (process.platform) {
platform = String(process.platform)
}
// TTY
if (process.stdout) {
tty = toBoolean(process.stdout.isTTY)
}
// Is CI
isCI = Boolean(require('ci-info').isCI)
// Env dependent
if (process.env) {
// NODE_ENV
if (process.env.NODE_ENV) {
nodeENV = process.env.NODE_ENV
}
// DEBUG
debug = toBoolean(process.env.DEBUG)
// MINIMAL
minimal = toBoolean(process.env.MINIMAL)
}
}
// Construct env object
var env = {
browser: browser,
test: nodeENV === 'test',
dev: nodeENV === 'development' || nodeENV === 'dev',
production: nodeENV === 'production',
debug: debug,
ci: isCI,
tty: tty,
minimal: undefined,
minimalCLI: undefined,
windows: /^win/i.test(platform),
darwin: /^darwin/i.test(platform),
linux: /^linux/i.test(platform),
}
// Compute minimal
env.minimal = minimal || env.ci || env.test || !env.tty
env.minimalCLI = env.minimal
// Export env
module.exports = Object.freeze(env)
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0222 ]-- |