Skip to content

Instantly share code, notes, and snippets.

@balanza
Last active March 22, 2016 11:03
Show Gist options
  • Save balanza/f03c10a646a9aa552dea to your computer and use it in GitHub Desktop.
Save balanza/f03c10a646a9aa552dea to your computer and use it in GitHub Desktop.
function commonFunctionalityX(fn){
return function retX() { //function name for didactical purpose only
//
// Here you write the commonFunctionalityX-specific code
//
var args = Array.prototype.slice.call(arguments);
return fn && fn.apply(this, args);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment