(min = 0.97, max = 1.03)
| 17 | const evilFart = newFart("fart-paulstretched-evil.flac"); |
| 18 | |
| 19 | function randomPlaybackRate(min = 0.97, max = 1.03) { |
| 20 | return Math.random() * (max - min) + min; |
| 21 | } |
| 22 | |
| 23 | function playFart(fart, randomPitch) { |
| 24 | for (const f of farts) { |
no outgoing calls
no test coverage detected
searching dependent graphs…