Skip to content

Instantly share code, notes, and snippets.

@baranovxyz
Created May 9, 2020 20:58
Show Gist options
  • Save baranovxyz/7fe89a1254b38ebb7f3796409f39d09c to your computer and use it in GitHub Desktop.
Save baranovxyz/7fe89a1254b38ebb7f3796409f39d09c to your computer and use it in GitHub Desktop.
function trampoline(f) {
return function trampolined(...args) {
let result = f.bind(null, ...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