hrms-manual/node_modules/vue-eslint-parser/node_modules/semver/internal/parse-options.js
2023-09-06 14:51:44 +07: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