更新注释

This commit is contained in:
Xmader 2019-11-11 21:44:47 -05:00
parent 36e83b2886
commit 952138742a
1 changed files with 2 additions and 0 deletions

View File

@ -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("/")