Skip to content

Instantly share code, notes, and snippets.

@heathcliff
Created October 25, 2013 16:50
Show Gist options
  • Save heathcliff/7157894 to your computer and use it in GitHub Desktop.
Save heathcliff/7157894 to your computer and use it in GitHub Desktop.
function runFunction(name, arguments) {
var fn = self[name];
if (typeof fn !== 'function') {
return;
}
fn.apply(self, arguments);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment