UNPKG

generator-egress

Version:
32 lines (24 loc) 595 B
/*! * Jade - nodes - Literal * Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca> * MIT Licensed */ /** * Module dependencies. */ var Node = require('./node'); /** * Initialize a `Literal` node with the given `str. * * @param {String} str * @api public */ var Literal = module.exports = function Literal(str) { this.str = str; }; /** * Inherit from `Node`. */ Literal.prototype = Object.create(Node.prototype); Literal.prototype.constructor = Literal; Literal.prototype.constructor.name = 'Literal'; // prevent the minifiers removing this