diff options
Diffstat (limited to 'together/node_modules/semver/functions/patch.js')
-rw-r--r-- | together/node_modules/semver/functions/patch.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/together/node_modules/semver/functions/patch.js b/together/node_modules/semver/functions/patch.js new file mode 100644 index 0000000..63afca2 --- /dev/null +++ b/together/node_modules/semver/functions/patch.js @@ -0,0 +1,3 @@ +const SemVer = require('../classes/semver') +const patch = (a, loose) => new SemVer(a, loose).patch +module.exports = patch |