Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.10.50
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
rxjs /
src /
util /
Delete
Unzip
Name
Size
Permission
Date
Action
AnimationFrame.ts
1.42
KB
-rw-rw-r--
2022-08-30 11:49
ArgumentOutOfRangeError.ts
530
B
-rw-rw-r--
2022-08-30 11:49
EmptyError.ts
433
B
-rw-rw-r--
2022-08-30 11:49
FastMap.ts
596
B
-rw-rw-r--
2022-08-30 11:49
Immediate.ts
7.36
KB
-rw-rw-r--
2022-08-30 11:49
Map.ts
130
B
-rw-rw-r--
2022-08-30 11:49
MapPolyfill.ts
917
B
-rw-rw-r--
2022-08-30 11:49
ObjectUnsubscribedError.ts
460
B
-rw-rw-r--
2022-08-30 11:49
Set.ts
820
B
-rw-rw-r--
2022-08-30 11:49
TimeoutError.ts
362
B
-rw-rw-r--
2022-08-30 11:49
UnsubscriptionError.ts
550
B
-rw-rw-r--
2022-08-30 11:49
applyMixins.ts
406
B
-rw-rw-r--
2022-08-30 11:49
assign.ts
453
B
-rw-rw-r--
2022-08-30 11:49
errorObject.ts
133
B
-rw-rw-r--
2022-08-30 11:49
identity.ts
53
B
-rw-rw-r--
2022-08-30 11:49
isArray.ts
102
B
-rw-rw-r--
2022-08-30 11:49
isArrayLike.ts
97
B
-rw-rw-r--
2022-08-30 11:49
isDate.ts
104
B
-rw-rw-r--
2022-08-30 11:49
isFunction.ts
88
B
-rw-rw-r--
2022-08-30 11:49
isNumeric.ts
425
B
-rw-rw-r--
2022-08-30 11:49
isObject.ts
95
B
-rw-rw-r--
2022-08-30 11:49
isPromise.ts
188
B
-rw-rw-r--
2022-08-30 11:49
isScheduler.ts
169
B
-rw-rw-r--
2022-08-30 11:49
noop.ts
57
B
-rw-rw-r--
2022-08-30 11:49
not.ts
259
B
-rw-rw-r--
2022-08-30 11:49
pipe.ts
2.33
KB
-rw-rw-r--
2022-08-30 11:49
root.ts
1.09
KB
-rw-rw-r--
2022-08-30 11:49
subscribeToResult.ts
3.11
KB
-rw-rw-r--
2022-08-30 11:49
toSubscriber.ts
752
B
-rw-rw-r--
2022-08-30 11:49
tryCatch.ts
352
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
export class MapPolyfill { public size = 0; private _values: any[] = []; private _keys: any[] = []; get(key: any) { const i = this._keys.indexOf(key); return i === -1 ? undefined : this._values[i]; } set(key: any, value: any) { const i = this._keys.indexOf(key); if (i === -1) { this._keys.push(key); this._values.push(value); this.size++; } else { this._values[i] = value; } return this; } delete(key: any): boolean { const i = this._keys.indexOf(key); if (i === -1) { return false; } this._values.splice(i, 1); this._keys.splice(i, 1); this.size--; return true; } clear(): void { this._keys.length = 0; this._values.length = 0; this.size = 0; } forEach(cb: Function, thisArg: any): void { for (let i = 0; i < this.size; i++) { cb.call(thisArg, this._values[i], this._keys[i]); } } }