Skip to content

Instantly share code, notes, and snippets.

@HichemBenChaaben
Created August 2, 2018 21:54
Show Gist options
  • Save HichemBenChaaben/614375ca57cb5864ddafd759d112b7ee to your computer and use it in GitHub Desktop.
Save HichemBenChaaben/614375ca57cb5864ddafd759d112b7ee to your computer and use it in GitHub Desktop.
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