Metzploreur/node_modules/semver/internal/parse-options.js
clement callaert 244d45ceb8 Version 2
2023-11-01 17:33:25 +01:00

15 lines
324 B
JavaScript

// parse out just the options we care about
const looseOption = Object.freeze({ loose: true })
const emptyOpts = Object.freeze({ })
const parseOptions = options => {
if (!options) {
return emptyOpts
}
if (typeof options !== 'object') {
return looseOption
}
return options
}
module.exports = parseOptions