hexo/node_modules/semver/functions/patch.js

4 lines
125 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
const SemVer = require('../classes/semver')
const patch = (a, loose) => new SemVer(a, loose).patch
module.exports = patch