number to string, fix #47

This commit is contained in:
dead_horse 2015-04-10 11:05:51 +08:00
parent 00ac7cc927
commit f9f9c87a7e

View File

@ -27,5 +27,5 @@ function Subscription(options) {
}
Subscription.prototype._read = function () {
while (this.push(this.value++)) {}
while (this.push(String(this.value++))) {}
};