Sha256: de760807576939594074021f948a1424618cb4b71961a43716b083bb41c32f73
Contents?: true
Size: 1.06 KB
Versions: 33
Compression:
Stored size: 1.06 KB
Contents
/*! * Stylus - Extend * Copyright(c) 2010 LearnBoost <dev@learnboost.com> * MIT Licensed */ /** * Module dependencies. */ var Node = require('./node'); /** * Initialize a new `Extend` with the given `selectors` array. * * @param {Array} selectors array of the selectors * @api public */ var Extend = module.exports = function Extend(selectors){ Node.call(this); this.selectors = selectors; }; /** * Inherit from `Node.prototype`. */ Extend.prototype.__proto__ = Node.prototype; /** * Return a clone of this node. * * @return {Node} * @api public */ Extend.prototype.clone = function(){ return new Extend(this.selectors); }; /** * Return `@extend selectors`. * * @return {String} * @api public */ Extend.prototype.toString = function(){ return '@extend ' + this.selectors.join(', '); }; /** * Return a JSON representation of this node. * * @return {Object} * @api public */ Extend.prototype.toJSON = function(){ return { __type: 'Extend', selectors: this.selectors, lineno: this.lineno, filename: this.filename }; };
Version data entries
33 entries across 19 versions & 1 rubygems