Skip to content

Instantly share code, notes, and snippets.

@mariabitsch
Created February 18, 2015 09:14
Show Gist options
  • Save mariabitsch/fdc5294b30d110c7fb3c to your computer and use it in GitHub Desktop.
Save mariabitsch/fdc5294b30d110c7fb3c to your computer and use it in GitHub Desktop.
var callByName = (function(global) {
return function(name, args, thisArg) {
return global[name].call(thisArg, args);
}
})(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment