Skip to content

Instantly share code, notes, and snippets.

@aqualad
Created August 8, 2016 02:18
Show Gist options
  • Save aqualad/8bd44d34b143486483cea3255dd0777c to your computer and use it in GitHub Desktop.
Save aqualad/8bd44d34b143486483cea3255dd0777c to your computer and use it in GitHub Desktop.
Testing ES6 fat arrow and lodash debounce together
function foo(s) { console.log(s); };
let d = _.debounce((s) => foo(s), 500);
$newEl = document.createElement('button');
$newEl.onclick = d;
$target = document.body;
$target.insertBefore($newEl, $target.childNodes[0]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment