Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save montyanderson/f83f4fbdcef7a862dd8ea8beda2f2cb7 to your computer and use it in GitHub Desktop.
Save montyanderson/f83f4fbdcef7a862dd8ea8beda2f2cb7 to your computer and use it in GitHub Desktop.
function reclosure(func, vars) {
return eval(`(${Object.keys(vars).join(", ")}) => {
return ${func.toString()}
}`)(...Object.values(vars));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment