Skip to content

Commit 3805ea5

Browse files
author
Dan Burzo
committed
Added to the readme
1 parent 0118b27 commit 3805ea5

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
pubsub
22
======
33

4-
`pubsub` is a small JavaScript library that implements the Publish/Subscribe (Mediator) pattern:
5-
http://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern
4+
`pubsub` is a small, fast\* JavaScript library that implements the [Publish/Subscribe](http://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern) pattern for web applications. You can find the annotated source code here: http://danburzo.github.io/appseeds
65

7-
Engineered for performance. Forked from AppSeeds: http://github.com/danburzo/appseeds
6+
It's forked from [AppSeeds](http://github.com/danburzo/appseeds).
7+
8+
\* [Benchmark test](http://jsperf.com/pubish-subscribe-performance).

pubsub.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@
146146
}
147147
};
148148

149+
// Mix public methods into `pubsub`'s prototype.
149150
for (var i in prototype) {
150151
if (prototype.hasOwnProperty(i)) {
151152
pubsub.prototype[i] = prototype[i];

0 commit comments

Comments
 (0)