summaryrefslogtreecommitdiff
path: root/MistyCore/node_modules/semver/functions/patch.js
diff options
context:
space:
mode:
Diffstat (limited to 'MistyCore/node_modules/semver/functions/patch.js')
-rw-r--r--MistyCore/node_modules/semver/functions/patch.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/MistyCore/node_modules/semver/functions/patch.js b/MistyCore/node_modules/semver/functions/patch.js
new file mode 100644
index 0000000..63afca2
--- /dev/null
+++ b/MistyCore/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