Comparing version 0.1.4 to 0.1.5
@@ -10,3 +10,4 @@ var Base = require('./base.js'); | ||
this.keyword = p.eatString(); | ||
this.text = p.eatRest().toString(); | ||
var rest = p.eatRest(); | ||
this.text = (rest)? rest.toString(): ''; | ||
}; | ||
@@ -13,0 +14,0 @@ TextualData.prototype.writeData = function writeData(output) { |
@@ -5,3 +5,3 @@ { | ||
"description": "Streaming PNG encoder/decoder, compatible with latest PNG extensions (PNGEXT 1.4.0)", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"homepage": "https://github.com/brianloveswords/streampng", | ||
@@ -8,0 +8,0 @@ "repository": { |
1024076
2472