Files
micro-service/node_modules/dotenv/lib/cli-options.js
how2ice 44cca8f122 init
2025-08-14 23:34:11 +09:00

18 lines
385 B
JavaScript
Executable File

const re = /^dotenv_config_(encoding|path|quiet|debug|override|DOTENV_KEY)=(.+)$/
module.exports = function optionMatcher (args) {
const options = args.reduce(function (acc, cur) {
const matches = cur.match(re)
if (matches) {
acc[matches[1]] = matches[2]
}
return acc
}, {})
if (!('quiet' in options)) {
options.quiet = 'true'
}
return options
}