UNPKG

kitchensink

Version:

Dispatch's awesome components and style guide

26 lines (20 loc) 339 B
/*! * Jade - nodes - Node * Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca> * MIT Licensed */ /** * Initialize a `Node`. * * @api public */ var Node = module.exports = function Node(){}; /** * Clone this node (return itself) * * @return {Node} * @api private */ Node.prototype.clone = function(){ return this; };