Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/sprintf-js/../flat-util/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
var shallowProperty = key => obj => obj == null ? void 0 : obj[key]; var getLength = shallowProperty('length'); var isArrayLike = (collection) => { const length = getLength(collection); return typeof length == 'number' && length >= 0 && length <= Number.MAX_SAFE_INTEGER; }; var isArguments = obj => toString.call(obj) === '[object Arguments]'; var isObject = obj => { const type = typeof obj; return type === 'function' || type === 'object' && !!obj; }; var getKeys = (obj) => { if (!isObject(obj)) return []; return Object.keys(obj); }; var optimizeCb = (func, context, argCount) => { if (context === void 0) return func; switch (argCount == null ? 3 : argCount) { case 1: return value => func.call(context, value); // The 2-argument case is omitted because we’re not using it. case 3: return (value, index, collection) => func.call(context, value, index, collection); case 4: return (accumulator, value, index, collection) => func.call(context, accumulator, value, index, collection); } return (...args) => func.apply(context, args); }; var forEach = (obj, iteratee, context) => { iteratee = optimizeCb(iteratee, context); if (isArrayLike(obj)) { let i = 0; for (const item of obj) { iteratee(item, i++, obj); } } else { const keys = getKeys(obj); for (const key of keys) { iteratee(obj[key], key, obj); } } return obj; }; const flatten = (input, shallow, strict, output = []) => { let idx = output.length; forEach(input, value => { if (isArrayLike(value) && (Array.isArray(value) || isArguments(value))) { if (shallow) { let j = 0; const len = value.length; while (j < len) output[idx++] = value[j++]; } else { flatten(value, shallow, strict, output); idx = output.length; } } else if (!strict) { output[idx++] = value; } }); return output; }; var flatten_1 = (array, shallow) => flatten(array, shallow, false); module.exports = flatten_1;