Update baselines

This commit is contained in:
Kanchalai Tanglertsampan
2017-05-23 16:11:13 -07:00
parent 3d9a1babf7
commit 72e6678804

View File

@@ -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