Ver Fonte

removed extra comma

Gildas há 7 anos atrás
pai
commit
2784c67219
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      lib/single-file/serializer.js

+ 1 - 1
lib/single-file/serializer.js

@@ -49,7 +49,7 @@ this.serializer = this.serializer || (() => {
 		{ tagName: "tfoot", accept: next => !next },
 		{ tagName: "tr", accept: next => !next || ["TR"].includes(next.tagName) },
 		{ tagName: "td", accept: next => !next || ["TD", "TH"].includes(next.tagName) },
-		{ tagName: "th", accept: next => !next || ["TD", "TH"].includes(next.tagName) },
+		{ tagName: "th", accept: next => !next || ["TD", "TH"].includes(next.tagName) }
 	];
 
 	return {