yangcht_obsidian-things-too.../node_modules/semver/functions/patch.js

6 lines
136 B
JavaScript
Raw Normal View History

2026-06-13 17:10:09 +00:00
'use strict'
const SemVer = require('../classes/semver')
const patch = (a, loose) => new SemVer(a, loose).patch
module.exports = patch