oil-station/gasStation-uni/node_modules/semver/functions/patch.js

4 lines
122 B
JavaScript
Raw Normal View History

2024-08-16 18:26:19 +08:00
const SemVer = require('../classes/semver')
const patch = (a, loose) => new SemVer(a, loose).patch
module.exports = patch