Sha256: c302252d856056947472ca9480d83d4e1bbe8727875896f5647f07de9c0971ca
Contents?: true
Size: 516 Bytes
Versions: 100
Compression:
Stored size: 516 Bytes
Contents
/*! * Stylus - Comment * Copyright(c) 2010 LearnBoost <dev@learnboost.com> * MIT Licensed */ /** * Module dependencies. */ var Node = require('./node'); /** * Initialize a new `Comment` with the given `str`. * * @param {String} str * @param {Boolean} suppress * @api public */ var Comment = module.exports = function Comment(str, suppress){ Node.call(this); this.str = str; this.suppress = suppress; }; /** * Inherit from `Node.prototype`. */ Comment.prototype.__proto__ = Node.prototype;
Version data entries
100 entries across 86 versions & 2 rubygems