You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
387 B
19 lines
387 B
9 years ago
|
var utils = require('../utils');
|
||
|
|
||
|
/**
|
||
|
* Push the given args to `expr`.
|
||
|
*
|
||
|
* @param {Expression} expr
|
||
|
* @param {Node} ...
|
||
|
* @return {Unit}
|
||
|
* @api public
|
||
|
*/
|
||
|
|
||
|
(module.exports = function(expr){
|
||
|
expr = utils.unwrap(expr);
|
||
|
for (var i = 1, len = arguments.length; i < len; ++i) {
|
||
|
expr.nodes.push(utils.unwrap(arguments[i]).clone());
|
||
|
}
|
||
|
return expr.nodes.length;
|
||
|
}).raw = true;
|