calculates accuracy and rank for osu!taiko
// https://osu.ppy.sh/scores/1860658559 const hit300 = 90; const hit100 = 25; const miss = 6; const calc = taiko(hit300, hit100, miss); /** * => { * accuracy: 84.71 * rank_legacy: 'B' * rank: 'B' * } */ Copy
// https://osu.ppy.sh/scores/1860658559 const hit300 = 90; const hit100 = 25; const miss = 6; const calc = taiko(hit300, hit100, miss); /** * => { * accuracy: 84.71 * rank_legacy: 'B' * rank: 'B' * } */
calculates accuracy and rank for osu!taiko
Example