printer-notifications/node_modules/semver/functions/patch.js

4 lines
122 B
JavaScript
Raw Normal View History

2023-11-13 21:10:04 +00:00
const SemVer = require('../classes/semver')
const patch = (a, loose) => new SemVer(a, loose).patch
module.exports = patch