Archive-Node-API
Archive-Node-API copied to clipboard
Fix Boolean env vars parsing
By default any non-empty string env var in condition like this if (process.env.VAR) {
will be parsed into boolean: true
. So we need to check against another string if (process.env.VAR === 'true') {
.