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