-
-
Save handrus/3bc693904e0af01e6e78 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @method: PubSub | |
* */ | |
;(function(global) { | |
'use strict'; | |
function PubSub () { | |
this.topics = {}; | |
}; | |
PubSub.prototype.subscribe = function(name, fn) { | |
this.topics[name] = this.topics[name] || []; | |
this.topics[name].push(fn); | |
} | |
PubSub.prototype.publish = function(name, args) { | |
this.topics[name] = this.topics[name] || []; | |
this.topics[name].forEach(function(fn) { | |
fn.apply(this, args); | |
}); | |
} | |
global.PubSub = new PubSub(); | |
}) (window); | |
PubSub.subscribe('foo', function (a, b) { | |
console.log('hey there from foo callback', arguments, a, b) | |
}); | |
PubSub.subscribe('foo', function (a, b) { | |
console.log('hey there again from another foo callback', arguments, a, b) | |
}); | |
PubSub.publish('foo', ['myArgument', 'anotherArg']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment