function uncurryThis(){
return function(){
return Function.call.apply(fn,arguments)
}
}
call and apply are used together. . . don't know
PHP中文网2017-05-19 10:47:31
If you understand what currying means, this function will be easy to understand.
The function of this function is decurrying.
In fact, it is similar to the fn()() call.