mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 04:43:37 -05:00
Update baselines
This commit is contained in:
@@ -10,8 +10,8 @@
|
||||
* @returns {*} Returns the result of `func`.
|
||||
*/
|
||||
function apply(func, thisArg, args) {
|
||||
>apply : (func: {}, thisArg: any, ...args: any[]) => any
|
||||
>func : {}
|
||||
>apply : (func: Function, thisArg: any, ...args: any[]) => any
|
||||
>func : Function
|
||||
>thisArg : any
|
||||
>args : any[]
|
||||
|
||||
@@ -28,7 +28,7 @@ function apply(func, thisArg, args) {
|
||||
>0 : 0
|
||||
>func.call(thisArg) : any
|
||||
>func.call : (this: Function, thisArg: any, ...argArray: any[]) => any
|
||||
>func : {}
|
||||
>func : Function
|
||||
>call : (this: Function, thisArg: any, ...argArray: any[]) => any
|
||||
>thisArg : any
|
||||
|
||||
@@ -36,7 +36,7 @@ function apply(func, thisArg, args) {
|
||||
>1 : 1
|
||||
>func.call(thisArg, args[0]) : any
|
||||
>func.call : (this: Function, thisArg: any, ...argArray: any[]) => any
|
||||
>func : {}
|
||||
>func : Function
|
||||
>call : (this: Function, thisArg: any, ...argArray: any[]) => any
|
||||
>thisArg : any
|
||||
>args[0] : any
|
||||
@@ -47,7 +47,7 @@ function apply(func, thisArg, args) {
|
||||
>2 : 2
|
||||
>func.call(thisArg, args[0], args[1]) : any
|
||||
>func.call : (this: Function, thisArg: any, ...argArray: any[]) => any
|
||||
>func : {}
|
||||
>func : Function
|
||||
>call : (this: Function, thisArg: any, ...argArray: any[]) => any
|
||||
>thisArg : any
|
||||
>args[0] : any
|
||||
@@ -61,7 +61,7 @@ function apply(func, thisArg, args) {
|
||||
>3 : 3
|
||||
>func.call(thisArg, args[0], args[1], args[2]) : any
|
||||
>func.call : (this: Function, thisArg: any, ...argArray: any[]) => any
|
||||
>func : {}
|
||||
>func : Function
|
||||
>call : (this: Function, thisArg: any, ...argArray: any[]) => any
|
||||
>thisArg : any
|
||||
>args[0] : any
|
||||
@@ -77,12 +77,12 @@ function apply(func, thisArg, args) {
|
||||
return func.apply(thisArg, args);
|
||||
>func.apply(thisArg, args) : any
|
||||
>func.apply : (this: Function, thisArg: any, argArray?: any) => any
|
||||
>func : {}
|
||||
>func : Function
|
||||
>apply : (this: Function, thisArg: any, argArray?: any) => any
|
||||
>thisArg : any
|
||||
>args : any[]
|
||||
}
|
||||
|
||||
export default apply;
|
||||
>apply : (func: {}, thisArg: any, ...args: any[]) => any
|
||||
>apply : (func: Function, thisArg: any, ...args: any[]) => any
|
||||
|
||||
|
||||
Reference in New Issue
Block a user