diff --git a/src/utils.ts b/src/utils.ts index 6e413c8..2a07841 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -2,6 +2,8 @@ export const getIndexPath = (id: number) => { const idStr = String(id) // 获取最后三位,倒序排列 + // x, y, z are the reversed last digits of the score id. Example: id 123456789, x = 9, y = 8, z = 7 + // https://developers.musescore.com/#/file-urls // "5449062" -> ["2", "6", "0"] const indexN = idStr.split("").reverse().slice(0, 3) return indexN.join("/")