fix: use npm install (#77)

This commit is contained in:
Luca Casonato
2024-09-13 18:57:49 +02:00
committed by GitHub
parent 084daf99a8
commit 90ced52839
771 changed files with 307 additions and 127 deletions

15
node_modules/semver/internal/parse-options.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
// 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