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.

16 lines
224 B

  1. 'use strict';
  2. var Node = module.exports = function Node(){};
  3. /**
  4. * Clone this node (return itself)
  5. *
  6. * @return {Node}
  7. * @api private
  8. */
  9. Node.prototype.clone = function(){
  10. return this;
  11. };
  12. Node.prototype.type = '';