mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
Changed Context.prototype.write() to call toString()
This commit is contained in:
parent
2402015b48
commit
b65ee9ea55
@ -177,7 +177,7 @@ Context.prototype = {
|
||||
},
|
||||
write: function (str) {
|
||||
if (str != null) {
|
||||
this.writer.write(str);
|
||||
this.writer.write(str.toString());
|
||||
}
|
||||
return this;
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user