timoxley 3847 days ago. link 3 points ▲ ▼> TL;DR If there's a polyfill that already does what you need, then always prefer that over a library that forces you to adopt their own API. amen.
timoxley 3857 days ago. link 1 point ▲ ▼excellent! I wonder if this could be used across all of node core /lib?
timoxley 3867 days ago. link 2 points ▲ ▼`arguments` is basically deprecated in favour of rest parameters in ES6. `arguments` doesn't even exist in arrow functions. [0] Also, the new spread operator means you will rarely need to use .apply(). [1] [0](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions_and_function_scope/rest_parameters) [1](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator)