Skip to content

Instantly share code, notes, and snippets.

@lupuszr
Created March 28, 2019 10:33
Show Gist options
  • Save lupuszr/0b8aaca489c242d080a7b42b058793c5 to your computer and use it in GitHub Desktop.
Save lupuszr/0b8aaca489c242d080a7b42b058793c5 to your computer and use it in GitHub Desktop.
trampoline
const trampoline = fn => (...args) => {
let result = fn(...args)
while (typeof result === 'function') {
result = result()
}
return result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment