-
-
Save sameerkat/060aafe8b6e4422758b1 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
;(function (root) { | |
'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); | |
}); | |
}; | |
root.PubSub = new PubSub(); | |
} (window)); | |
PubSub.subscribe('foo', function (a, b) { | |
console.log('foo callback', a, b) | |
}); | |
PubSub.subscribe('foo', function (a, b) { | |
console.log('hey there, thats foo callback ', a, b) | |
}); | |
PubSub.publish('foo', ['arg A', 'arg b']); // log: foo callback "myargument A" "arg b" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment