UNPKG

297 BJavaScriptView Raw
1// https://github.com/nodejs/node/blob/1aab13cad9c800f4121c1d35b554b78c1b17bdbd/lib/internal/options.js
2
3'use strict'
4
5const argv = Object.create(null)
6
7function getOptionValue (optionName) {
8 return argv[optionName.slice(2)] // remove leading --
9}
10
11module.exports = {
12 argv,
13 getOptionValue
14}