UNPKG
web-audio-api
Version:
latest (1.5.1)
1.5.1
1.5.0
1.4.0
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.0
1.1.1
1.0.0
0.2.2
0.2.1
0.2.0
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Portable Web Audio API
github.com/audiojs/web-audio-api
audiojs/web-audio-api
web-audio-api
/
src
/
constants.js
5 lines
(3 loc)
•
204 B
JavaScript
View Raw
1
2
3
4
5
export
const
BLOCK_SIZE
=
128
// fp-safe ceiling: if value is within 1e-8 of an integer, snap to it
export
const
fpCeil
= v => {
let
r =
Math
.
round
(v);
return
Math
.
abs
(v - r) <
1e-8
? r :
Math
.
ceil
(v) }