Blame view

node_modules/stylus/lib/functions/p.js 433 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  var utils = require('../utils')
    , nodes = require('../nodes');
  
  /**
   * Inspect the given `expr`.
   *
   * @param {Expression} expr
   * @api public
   */
  
  (module.exports = function p(){
    [].slice.call(arguments).forEach(function(expr){
      expr = utils.unwrap(expr);
      if (!expr.nodes.length) return;
      console.log('\u001b[90minspect:\u001b[0m %s', expr.toString().replace(/^\(|\)$/g, ''));
    })
    return nodes.null;
  }).raw = true;