Your IP : 216.73.217.110


Current Path : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/jade/lib/nodes/
Upload File :
Current File : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/jade/lib/nodes/text.js

'use strict';

var Node = require('./node');

/**
 * Initialize a `Text` node with optional `line`.
 *
 * @param {String} line
 * @api public
 */

var Text = module.exports = function Text(line) {
  this.val = line;
};

// Inherit from `Node`.
Text.prototype = Object.create(Node.prototype);
Text.prototype.constructor = Text;

Text.prototype.type = 'Text';

/**
 * Flag as text.
 */

Text.prototype.isText = true;