Skip to content

Instantly share code, notes, and snippets.

@pqr
Created March 14, 2012 18:49
Show Gist options
  • Save pqr/2038621 to your computer and use it in GitHub Desktop.
Save pqr/2038621 to your computer and use it in GitHub Desktop.
Переопределение функции с вызовом оригинала
formatMsg = (function (original) {
return function (entry) {
additinalWork();
return original.apply(this, arguments);
};
})(formatMsg);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment