Sha256: 20d81192cd23d5744084ccf1e8e2cebd5a9aa4ffc26b6bbf09be2071974d209a
Contents?: true
Size: 453 Bytes
Versions: 90
Compression:
Stored size: 453 Bytes
Contents
/*! * Stylus - Import * Copyright(c) 2010 LearnBoost <dev@learnboost.com> * MIT Licensed */ /** * Module dependencies. */ var Node = require('./node'); /** * Initialize a new `Import` with the given `expr`. * * @param {Expression} expr * @api public */ var Import = module.exports = function Import(expr){ Node.call(this); this.path = expr; }; /** * Inherit from `Node.prototype`. */ Import.prototype.__proto__ = Node.prototype;
Version data entries
90 entries across 76 versions & 2 rubygems