UNPKG

web-audio-api

Version:
6 lines (3 loc) 185 B
export const fixNANs = x => Number.isFinite(x) ? x : 0 export const rad2deg = r => r * 180.0 / Math.PI export const clampTo = (value, min, max) => Math.min(Math.max(min, value), max)