OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
_backup
/
tinymce
/
tinymce
/
src
/
core
/
main
/
ts
/
util
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/20/2020 05:44:43 AM
rwxr-xr-x
📄
ArrUtils.ts
2.39 KB
02/20/2020 05:44:46 AM
rw-r--r--
📄
LazyEvaluator.ts
547 bytes
02/20/2020 05:44:46 AM
rw-r--r--
📄
Predicate.ts
770 bytes
02/20/2020 05:44:47 AM
rw-r--r--
📄
Private.ts
1.15 KB
02/20/2020 05:44:47 AM
rw-r--r--
📄
Quirks.ts
26.03 KB
02/20/2020 05:44:48 AM
rw-r--r--
📄
Uuid.ts
667 bytes
02/20/2020 05:44:48 AM
rw-r--r--
Editing: ArrUtils.ts
Close
/** * Copyright (c) Tiny Technologies, Inc. All rights reserved. * Licensed under the LGPL or a commercial license. * For LGPL see License.txt in the project root for license information. * For commercial licenses see https://www.tiny.cloud/ */ /** * Array utility class. * * @private * @class tinymce.util.Arr */ const isArray = Array.isArray; const toArray = function (obj) { let array = obj, i, l; if (!isArray(obj)) { array = []; for (i = 0, l = obj.length; i < l; i++) { array[i] = obj[i]; } } return array; }; const each = function (o, cb, s?) { let n, l; if (!o) { return 0; } s = s || o; if (o.length !== undefined) { // Indexed arrays, needed for Safari for (n = 0, l = o.length; n < l; n++) { if (cb.call(s, o[n], n, o) === false) { return 0; } } } else { // Hashtables for (n in o) { if (o.hasOwnProperty(n)) { if (cb.call(s, o[n], n, o) === false) { return 0; } } } } return 1; }; const map = function (array, callback) { const out = []; each(array, function (item, index) { out.push(callback(item, index, array)); }); return out; }; const filter = function (a, f?) { const o = []; each(a, function (v, index) { if (!f || f(v, index, a)) { o.push(v); } }); return o; }; const indexOf = function (a, v) { let i, l; if (a) { for (i = 0, l = a.length; i < l; i++) { if (a[i] === v) { return i; } } } return -1; }; const reduce = function (collection, iteratee, accumulator?, thisArg?) { let i = 0; if (arguments.length < 3) { accumulator = collection[0]; } for (; i < collection.length; i++) { accumulator = iteratee.call(thisArg, accumulator, collection[i], i); } return accumulator; }; const findIndex = function (array, predicate, thisArg?) { let i, l; for (i = 0, l = array.length; i < l; i++) { if (predicate.call(thisArg, array[i], i, array)) { return i; } } return -1; }; const find = function (array, predicate, thisArg?) { const idx = findIndex(array, predicate, thisArg); if (idx !== -1) { return array[idx]; } return undefined; }; const last = function (collection) { return collection[collection.length - 1]; }; export default { isArray, toArray, each, map, filter, indexOf, reduce, findIndex, find, last };