File size: 206 Bytes
f23825d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
const MINUTE = 60 * 1000000

export function uSecPerBeatToBPM(microsecondsPerBeat: number) {
  return MINUTE / microsecondsPerBeat
}

export function bpmToUSecPerBeat(bpm: number) {
  return MINUTE / bpm
}