A Twitch.tv viewer reward and games system.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
'use strict';
var Node = require('./node');
/** * Initialize a `Comment` with the given `val`, optionally `buffer`, * otherwise the comment may render in the output. * * @param {String} val * @param {Boolean} buffer * @api public */
var Comment = module.exports = function Comment(val, buffer) { this.val = val; this.buffer = buffer; };
// Inherit from `Node`.
Comment.prototype = Object.create(Node.prototype); Comment.prototype.constructor = Comment;
Comment.prototype.type = 'Comment';
|