BE-SPAN/node_modules/semver/functions/patch.js

4 lines
122 B
JavaScript
Raw Normal View History

2024-10-20 15:04:16 +00:00
const SemVer = require('../classes/semver')
const patch = (a, loose) => new SemVer(a, loose).patch
module.exports = patch