Skip to content

Instantly share code, notes, and snippets.

@letsgetrandy
Created November 19, 2014 16:28
Show Gist options
  • Save letsgetrandy/1b0a8ddcf77e06a45c55 to your computer and use it in GitHub Desktop.
Save letsgetrandy/1b0a8ddcf77e06a45c55 to your computer and use it in GitHub Desktop.
function yo(fn) {
if (fn instanceof Function) {
this.listeners.push(fn);
} else {
_.each(this.listeners, function (listener) {
listener(fn);
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment