UNPKG

vash

Version:

Razor syntax for JS templating

14 lines (12 loc) 292 B
var Node = module.exports = function MarkupContentNode() { this.type = 'VashMarkupContent'; this.values = []; this.startloc = null; this.endloc = null; this._waitingForNewline = null; } Node.prototype.endOk = function() { return this._waitingForNewline ? false : true; }