Eric Miller

Results 2 issues of Eric Miller

``` var b = new CBuffer(10); b.push(1, 2, 3, 4, 5); b.rotateLeft(); b.sort(); b.toArray(); ``` => `[1, 1, 2, 3, 4]` Seems the culprit is the use of `shift` in...

bug

Per [autoplay policy](https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Best_practices#autoplay_policy), an AudioContext won't be allowed to run until a user gesture of some sort happens. Calls to `audio-context-timers.setTimeout` made before this happens won't function as expected. One...