aboutsummaryrefslogtreecommitdiffstats
path: root/backend/node_modules/semver/functions/valid.js
diff options
context:
space:
mode:
Diffstat (limited to 'backend/node_modules/semver/functions/valid.js')
-rw-r--r--backend/node_modules/semver/functions/valid.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/backend/node_modules/semver/functions/valid.js b/backend/node_modules/semver/functions/valid.js
deleted file mode 100644
index f27bae1..0000000
--- a/backend/node_modules/semver/functions/valid.js
+++ /dev/null
@@ -1,6 +0,0 @@
-const parse = require('./parse')
-const valid = (version, options) => {
- const v = parse(version, options)
- return v ? v.version : null
-}
-module.exports = valid