How to use the stylus/lib/visitor/evaluator.apply function in stylus

To help you get started, we’ve selected a few stylus examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github shama / stylus-loader / lib / evaluator.js View on Github external
function CachedPathEvaluator(root, options) {
  Evaluator.apply(this, arguments);

  this.cache = options.cache;
}
github mockingbot / ibot / scripts / stylus-enhanced-evaluator.js View on Github external
function EnhancedEvaluator(root, optios) {
  Evaluator.apply(this, arguments)
}
EnhancedEvaluator.prototype = Object.create(Evaluator.prototype)