Yann
test
f23825d
raw
history blame
206 Bytes
const MINUTE = 60 * 1000000
export function uSecPerBeatToBPM(microsecondsPerBeat: number) {
return MINUTE / microsecondsPerBeat
}
export function bpmToUSecPerBeat(bpm: number) {
return MINUTE / bpm
}