aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/semver/functions/clean.js
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/semver/functions/clean.js')
-rw-r--r--vanilla/node_modules/semver/functions/clean.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/vanilla/node_modules/semver/functions/clean.js b/vanilla/node_modules/semver/functions/clean.js
deleted file mode 100644
index 79703d6..0000000
--- a/vanilla/node_modules/semver/functions/clean.js
+++ /dev/null
@@ -1,8 +0,0 @@
-'use strict'
-
-const parse = require('./parse')
-const clean = (version, options) => {
- const s = parse(version.trim().replace(/^[=v]+/, ''), options)
- return s ? s.version : null
-}
-module.exports = clean