PATH: //usr/lib/node_modules/npm/node_modules/@npmcli/config/lib
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 env-replace.js
↓
X
📄 index.js
↓
X
📄 nerf-dart.js
↓
X
📄 parse-field.js
↓
X
📄 set-envs.js
↓
X
📄 type-defs.js
↓
X
📄 type-description.js
↓
X
📄 umask.js
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: env-replace.js
// replace any ${ENV} values with the appropriate environ. const envExpr = /(?<!\\)(\\*)\$\{([^${}]+)\}/g module.exports = (f, env) => f.replace(envExpr, (orig, esc, name) => { const val = env[name] !== undefined ? env[name] : `$\{${name}}` // consume the escape chars that are relevant. if (esc.length % 2) { return orig.slice((esc.length + 1) / 2) } return (esc.slice(esc.length / 2)) + val })
SIMPAN PERUBAHAN