Created
December 30, 2024 22:01
-
-
Save MarkoSh/01e13ed5b10df92bc25504cf56b81467 to your computer and use it in GitHub Desktop.
Disable throttling functions like setTimeout, setInterval in inactive tabs in Chrome
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doNotThrottleMyTimers() { | |
const audioContext = new AudioContext(); | |
const constantSource = audioContext.createConstantSource(); | |
constantSource.connect(audioContext.destination); | |
constantSource.start(); | |
} | |
doNotThrottleMyTimers(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment