From 2f2da9dc38a8146c6416a3ade85fe78c6a8be114 Mon Sep 17 00:00:00 2001 From: taoqf Date: Wed, 8 Jan 2020 00:09:59 -0500 Subject: [PATCH] add missing , --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 5d3da4c..bb9a859 100755 --- a/src/index.ts +++ b/src/index.ts @@ -330,7 +330,7 @@ export class HTMLElement extends Node { let result = [] as HTMLElement[]; selectors.forEach((s) => { result = result.concat(this.querySelectorAll(s.trim())); - }) + }); return result; } matcher = new Matcher(selector);