All this time I've been using the full named function expressions over arrow functions just for the stack traces.
let doStuffCallback = () => {}; doStuff(doStuffCallback);
doStuff(function doStuffCallback() { });