From 20595239c1bb2af91f44cd421b15b0dacfd5385b Mon Sep 17 00:00:00 2001 From: Stu Kabakoff Date: Sun, 23 Feb 2020 12:48:17 -0500 Subject: [PATCH] remove console.error --- src/nodes/html.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/nodes/html.ts b/src/nodes/html.ts index bd1955f..04a8cb5 100644 --- a/src/nodes/html.ts +++ b/src/nodes/html.ts @@ -452,7 +452,6 @@ export default class HTMLElement extends Node { } public hasAttribute(key: string) { - console.error(this.attributes, key); return key in this.attributes; }