ccc-tnt-psd2ui/npm-packages/mac-v3.4.+/semver/internal/parse-options.js
2023-09-06 09:51:55 +08:00

16 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