Skip to content

Instantly share code, notes, and snippets.

@raindrop-ua
Created October 21, 2016 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raindrop-ua/757f1c52c984f806b08213b5f6bed795 to your computer and use it in GitHub Desktop.
Save raindrop-ua/757f1c52c984f806b08213b5f6bed795 to your computer and use it in GitHub Desktop.
window.someFunc = (function (func) {
return function () {
var out = func.apply(this, arguments);
// do something
return out;
};
})(window.someFunc);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment