1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-03 00:34:28 +00:00
Files
musix-oss/node_modules/dotenv/lib/cli-options.js
MatteZ02 50b9bed483 Updated
2019-10-10 16:43:04 +03:00

14 lines
303 B
JavaScript

/* @flow */
const re = /^dotenv_config_(encoding|path|debug)=(.+)$/
module.exports = function optionMatcher (args /*: Array<string> */) {
return args.reduce(function (acc, cur) {
const matches = cur.match(re)
if (matches) {
acc[matches[1]] = matches[2]
}
return acc
}, {})
}