FLUJOS/VISUALIZACION/node_modules/dotenv/config.js
2025-11-07 00:06:12 +01:00

11 lines
255 B
JavaScript
Executable file

(function () {
var options = {}
process.argv.forEach(function (val, idx, arr) {
var matches = val.match(/^dotenv_config_(.+)=(.+)/)
if (matches) {
options[matches[1]] = matches[2]
}
})
require('./lib/main').config(options)
})()