aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/semver/functions/neq.js
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/semver/functions/neq.js')
-rw-r--r--vanilla/node_modules/semver/functions/neq.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/vanilla/node_modules/semver/functions/neq.js b/vanilla/node_modules/semver/functions/neq.js
deleted file mode 100644
index 84326b7..0000000
--- a/vanilla/node_modules/semver/functions/neq.js
+++ /dev/null
@@ -1,5 +0,0 @@
-'use strict'
-
-const compare = require('./compare')
-const neq = (a, b, loose) => compare(a, b, loose) !== 0
-module.exports = neq