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