Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOS-React-2
QOS-React-2
/
scripts
/
jest
/
patchSetImmediate.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
7 lines
115 Bytes
Copy permalink
Copy
Raw
1
'
use strict
'
;
2
3
export
function
patchSetImmediate
()
{
4
global
.
setImmediate
=
cb
=>
{
5
setTimeout
(
cb
,
0
);
6
};
7
}