We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1850d10 commit 20d1c09Copy full SHA for 20d1c09
lib/select.js
@@ -46,7 +46,7 @@ select.rule = function (selector, ast) {
46
selector.rule.nestingOperator == '>') {
47
if (!node.children) return;
48
node.children.forEach(function (childNode) {
49
- [].push.apply(result, select.rule(selector.rule, childNode));
+ append(result, select.rule(selector.rule, childNode));
50
});
51
}
52
else {
0 commit comments