Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
@types /
es-abstract /
helpers /
[ HOME SHELL ]
Name
Size
Permission
Action
DefineOwnProperty.d.ts
849
B
-rwxr-xr-x
OwnPropertyKeys.d.ts
491
B
-rwxr-xr-x
assertRecord.d.ts
637
B
-rwxr-xr-x
assign.d.ts
77
B
-rwxr-xr-x
callBind.d.ts
4.96
KB
-rwxr-xr-x
callBound.d.ts
754
B
-rwxr-xr-x
every.d.ts
192
B
-rwxr-xr-x
forEach.d.ts
449
B
-rwxr-xr-x
getInferredName.d.ts
293
B
-rwxr-xr-x
getIteratorMethod.d.ts
505
B
-rwxr-xr-x
getOwnPropertyDescriptor.d.ts
545
B
-rwxr-xr-x
getProto.d.ts
80
B
-rwxr-xr-x
getSymbolDescription.d.ts
154
B
-rwxr-xr-x
isFinite.d.ts
26
B
-rwxr-xr-x
isNaN.d.ts
23
B
-rwxr-xr-x
isPrefixOf.d.ts
91
B
-rwxr-xr-x
isPrimitive.d.ts
141
B
-rwxr-xr-x
isPropertyDescriptor.d.ts
341
B
-rwxr-xr-x
isSamePropertyDescriptor.d.ts
269
B
-rwxr-xr-x
maxSafeInteger.d.ts
34
B
-rwxr-xr-x
mod.d.ts
76
B
-rwxr-xr-x
padTimeComponent.d.ts
286
B
-rwxr-xr-x
regexTester.d.ts
116
B
-rwxr-xr-x
setProto.d.ts
80
B
-rwxr-xr-x
sign.d.ts
62
B
-rwxr-xr-x
timeConstants.d.ts
227
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : callBind.d.ts
/** * For a given function, creates a bound function that has the same body as the original function. * The this object of the bound function is associated with the specified object, and has the specified initial parameters. * * Equivalent to: * ```js * Function.prototype.call.bind(target, ...) * ``` * * @param target The function to be used as the this object for `Function.prototype.call`. * @param args Arguments to bind to the parameters of the function. */ declare function callBind<T, A extends unknown[], R>(target: (this: T, ...args: A) => R): (thisArg: T, ...args: A) => R; declare function callBind<T, A extends unknown[], R>(target: (this: T, ...args: A) => R, thisArg: T): (...args: A) => R; declare function callBind<T, A0, A extends unknown[], R>( target: (this: T, arg0: A0, ...args: A) => R, thisArg: T, arg0: A0, ): (...args: A) => R; declare function callBind<T, A0, A1, A extends unknown[], R>( target: (this: T, arg0: A0, arg1: A1, ...args: A) => R, thisArg: T, arg0: A0, arg1: A1, ): (...args: A) => R; declare function callBind<T, A0, A1, A2, A extends unknown[], R>( target: (this: T, arg0: A0, arg1: A1, arg2: A2, ...args: A) => R, thisArg: T, arg0: A0, arg1: A1, arg2: A2, ): (...args: A) => R; declare function callBind<T, A0, A1, A2, A3, A extends unknown[], R>( target: (this: T, arg0: A0, arg1: A1, arg2: A2, arg3: A3, ...args: A) => R, thisArg: T, arg0: A0, arg1: A1, arg2: A2, arg3: A3, ): (...args: A) => R; declare function callBind<T, AX, R>( target: (this: T, ...args: AX[]) => R, thisArg: T, ...args: AX[] ): (...args: AX[]) => R; // tslint:disable-next-line: ban-types declare function callBind<F extends Function>( target: F, ): ( thisArg: ThisParameterType<F>, ...args: F extends (...args: infer A) => any ? A : unknown[] ) => F extends (...args: any) => infer R ? R : any; // tslint:disable-next-line: ban-types declare function callBind<F extends Function>( target: F, thisArg: ThisParameterType<F>, ): (...args: F extends (...args: infer A) => any ? A : unknown[]) => F extends (...args: any) => infer R ? R : any; // tslint:disable-next-line: ban-types declare function callBind<F extends Function>( target: F, thisArg: ThisParameterType<F>, ...args: unknown[] ): (...args: unknown[]) => F extends (...args: any) => infer R ? R : any; declare namespace callBind { /** * For a given function, creates a bound function that has the same body as the original function. * The this object of the bound function is associated with the specified object, and has the specified initial parameters. * * Equivalent to: * ```js * Function.prototype.apply.bind(target, ...) * ``` * * @param target The function to be used as the this object for `Function.prototype.apply`. * @param args Arguments to bind to the parameters of the function. */ function apply<T, A extends unknown[], R>(target: (this: T, ...args: A) => R): (thisArg: T, args: Readonly<A>) => R; function apply<T, A extends unknown[], R>(target: (this: T, ...args: A) => R, thisArg: T): (args: Readonly<A>) => R; function apply<T, A0, A extends unknown[], R>( target: (this: T, arg0: A0, ...args: A) => R, thisArg: T, arg0: A0, ): (args: Readonly<A>) => R; function apply<T, A0, A1, A extends unknown[], R>( target: (this: T, arg0: A0, arg1: A1, ...args: A) => R, thisArg: T, arg0: A0, arg1: A1, ): (args: Readonly<A>) => R; function apply<T, A0, A1, A2, A extends unknown[], R>( target: (this: T, arg0: A0, arg1: A1, arg2: A2, ...args: A) => R, thisArg: T, arg0: A0, arg1: A1, arg2: A2, ): (args: Readonly<A>) => R; function apply<T, A0, A1, A2, A3, A extends unknown[], R>( target: (this: T, arg0: A0, arg1: A1, arg2: A2, arg3: A3, ...args: A) => R, thisArg: T, arg0: A0, arg1: A1, arg2: A2, arg3: A3, ): (args: Readonly<A>) => R; function apply<T, AX, R>(target: (this: T, ...args: AX[]) => R, thisArg: T, ...args: AX[]): (args: AX[]) => R; // tslint:disable-next-line: ban-types function apply<F extends Function>( target: F, ): ( thisArg: ThisParameterType<F>, args: F extends (...args: infer A) => any ? Readonly<A> : readonly unknown[], ) => F extends (...args: any) => infer R ? R : any; // tslint:disable-next-line: ban-types function apply<F extends Function>( target: F, thisArg: ThisParameterType<F>, ): ( args: F extends (...args: infer A) => any ? Readonly<A> : readonly unknown[], ) => F extends (...args: any) => infer R ? R : any; // tslint:disable-next-line: ban-types function apply<F extends Function>( target: F, thisArg: ThisParameterType<F>, ...args: unknown[] ): (args: ArrayLike<unknown>) => F extends (...args: any) => infer R ? R : any; } export = callBind;
Close