Commit sur le PC fixe

This commit is contained in:
2023-11-20 11:39:31 +01:00
parent 064e0b34b0
commit 1651f488a0
291 changed files with 28343 additions and 1 deletions

6
node_modules/semver/functions/valid.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
const parse = require('./parse')
const valid = (version, options) => {
const v = parse(version, options)
return v ? v.version : null
}
module.exports = valid