Files
ScoreSpot/ProjectSourceCode/node_modules/semver/internal/parse-options.js
Lucas Patenaude 90b9347318 Add bcryptjs
2024-03-15 03:27:25 -06: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