mirror of https://git.tuxpa.in/a/code-server.git
4 lines
64 B
JavaScript
4 lines
64 B
JavaScript
|
global.requestAnimationFrame = (cb) => {
|
||
|
setTimeout(cb, 0);
|
||
|
};
|