Files
old-kitabcitab-frontend/kitabcitab/node_modules/semver/functions/patch.js

4 lines
122 B
JavaScript
Raw Normal View History

2022-12-27 12:05:56 +01:00
const SemVer = require('../classes/semver')
const patch = (a, loose) => new SemVer(a, loose).patch
module.exports = patch