Files
vps-management-bot/projects/status-panel/node_modules/semver/internal/parse-options.js

18 lines
338 B
JavaScript
Raw Normal View History

2026-03-21 01:10:53 +08:00
'use strict'
// 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