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