add modules

This commit is contained in:
OpportunityLiu
2020-03-20 20:40:54 +08:00
Unverified
parent 81726402f6
commit 755d0b485b
79 changed files with 6101 additions and 4 deletions
+4
View File
@@ -0,0 +1,4 @@
// Determine if version is greater than all the versions possible in the range.
const outside = require('./outside')
const gtr = (version, range, options) => outside(version, range, '>', options)
module.exports = gtr