Sfoglia il codice sorgente

removed extra comma

Gildas 7 anni fa
parent
commit
2784c67219
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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 {