Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Last active November 5, 2017 17:21
Show Gist options
  • Save gskachkov/778b8907941530f06077293a988fa45e to your computer and use it in GitHub Desktop.
Save gskachkov/778b8907941530f06077293a988fa45e to your computer and use it in GitHub Desktop.
var weaver = function (target, methodName) {
var before = function () {
console.log(arguments);
};
var old = target[methodName];
target[methodName] = function () {
before.apply(this, arguments);
return old.apply(this, arguments);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment