Skip to content

Instantly share code, notes, and snippets.

@VSeryoga
Created August 13, 2018 06:15
Show Gist options
  • Save VSeryoga/996548b2017589567ce3d63d2a7a4ae1 to your computer and use it in GitHub Desktop.
Save VSeryoga/996548b2017589567ce3d63d2a7a4ae1 to your computer and use it in GitHub Desktop.
Перехват функции js
(function(doStaf) {
app.doStaf = function() {
// здесь выводим все аргументы, с которыми был вызван app.doStaf()
console.log('app.doStaf args', arguments);
return doStaf.apply(this, arguments);
};
})(app.doStaf);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment