menu

arrow_back Is this an arrow function?

by
1 vote
BX.delegate = function (func, thisObject)
{
if (!func || !thisObject)
return func;

return function() {
var cur = BX.proxy_context;
BX.proxy_context = this;
var res = func.apply(thisObject, arguments);
BX.proxy_context = cur;
return res;
}
};

1 Answer

by
 
Best answer
0 votes
No, it's not an arrow function.
There are no arrows like this: =>