mirror of
https://github.com/danog/code-server.git
synced 2024-12-14 18:28:13 +01:00
4 lines
64 B
JavaScript
4 lines
64 B
JavaScript
|
global.requestAnimationFrame = (cb) => {
|
||
|
setTimeout(cb, 0);
|
||
|
};
|