mirror of
https://github.com/danbulant/node-html-parser
synced 2026-06-20 23:21:30 +00:00
add missing ,
This commit is contained in:
parent
4b588b69e2
commit
2f2da9dc38
1 changed files with 1 additions and 1 deletions
|
|
@ -330,7 +330,7 @@ export class HTMLElement extends Node {
|
||||||
let result = [] as HTMLElement[];
|
let result = [] as HTMLElement[];
|
||||||
selectors.forEach((s) => {
|
selectors.forEach((s) => {
|
||||||
result = result.concat(this.querySelectorAll(s.trim()));
|
result = result.concat(this.querySelectorAll(s.trim()));
|
||||||
})
|
});
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
matcher = new Matcher(selector);
|
matcher = new Matcher(selector);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue