Changed Context.prototype.write() to call toString()

This commit is contained in:
Patrick Steele-Idem 2014-08-12 14:35:35 -06:00
parent 2402015b48
commit b65ee9ea55

View File

@ -177,7 +177,7 @@ Context.prototype = {
},
write: function (str) {
if (str != null) {
this.writer.write(str);
this.writer.write(str.toString());
}
return this;
},