Last active
October 17, 2019 01:39
-
-
Save PanJarda/2166e791b20245e6f18f0da735466f20 to your computer and use it in GitHub Desktop.
js helpers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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