Skip to content

Instantly share code, notes, and snippets.

View amatiasq's full-sized avatar

A. Matías Quezada amatiasq

View GitHub Profile
@amatiasq
amatiasq / advice.js
Created June 11, 2012 13:46 — forked from angus-c/advice.js
simplest advice functional mixin
// usage
withAdvice.call(targetObject);
var withSomething = function() {
this.wrap('walk', function() {
// before
this.base();
// after
});
};