The fat arrow macro includes this tenary operator:
function(/* ... */){/* ... */}.bind(this, typeof arguments !== "undefined" ? arguments : undefined)
I think this is needless, the operator returns 'undefined' if arguments is undefined or the arguments object.I think it does the same without the tenary operator:
function(/* ... */){/* ... */}.bind(this, arguments)
The fat arrow macro includes this tenary operator:
function(/* ... */){/* ... */}.bind(this, typeof arguments !== "undefined" ? arguments : undefined)
I think this is needless, the operator returns 'undefined' if arguments is undefined or the arguments object.I think it does the same without the tenary operator:
function(/* ... */){/* ... */}.bind(this, arguments)