文件名称:konga-master.zip
文件大小:2.09MB
文件格式:ZIP
更新时间:2022-06-03 05:07:11
konga
有的人安装konga git下载不下来 可以直接传上去解压 /** * Fix invalid semver formats like `0.14.0rc2` * A valid semver format would be `0.14.0-rc2` * This patch addresses a very specific version invalidity. * It does not intent to fix invalid semver formats in general. * @param version */ ensureSemverFormat: function (version) { if(version.indexOf("-") < 0) { // Find the index of the first alphanumeric character in the version string let firstAlphaIndex = version.search(/[a-zA-Z]/); if(firstAlphaIndex > -1) { // Remove everything from that character onward return version.substring(0, firstAlphaIndex); } }