Skip to content

Instantly share code, notes, and snippets.

@PanJarda
Last active October 17, 2019 01:39
Show Gist options
  • Save PanJarda/2166e791b20245e6f18f0da735466f20 to your computer and use it in GitHub Desktop.
Save PanJarda/2166e791b20245e6f18f0da735466f20 to your computer and use it in GitHub Desktop.
js helpers
const throttle = fn => timeout => id => (...e) =>
!id && (id = setTimeout(() => (id = null) || fn(...e), timeout || 100))
const Y = fn => (m => x => fn(m(m))(x))(m => x => fn(m(m))(x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment