* Calls a method of an object, substituting another object for the current object. * @param thisArg The object to be used as the current object. * @param argArray A list of arguments to be passed to the method.
(thisArg: any, ...argArray: any[])
| 238 | * @param argArray A list of arguments to be passed to the method. |
| 239 | */ |
| 240 | call(thisArg: any, ...argArray: any[]): any; |
| 241 | |
| 242 | /** |
| 243 | * For a given function, creates a bound function that has the same body as the original function. |
no outgoing calls
no test coverage detected