lrc-maker
Version:
歌词滚动姬|可能是你所能见到的最好用的歌词制作工具
18 lines • 493 B
JavaScript
;
((strProto) => {
if (!strProto.trimStart) {
strProto.trimStart =
strProto.trimLeft ||
function () {
return this.replace(/^\s+/, "");
};
}
if (!strProto.trimEnd) {
strProto.trimEnd =
strProto.trimRight ||
function () {
return this.replace(/\s+$/, "");
};
}
})(String.prototype);
//# sourceMappingURL=string.esnext.js.map