1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 1 1 1 | var BaseExpression = require("./base"); function DoctypeExpression(value) { this.value = value; BaseExpression.apply(this, arguments); } BaseExpression.extend(DoctypeExpression, { type: "doctype", toJavaScript: function() { return "text('<!DOCTYPE " + this.value + ">')"; } }); module.exports = DoctypeExpression; |