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