Browse Source

removed unused function

Gildas 7 years ago
parent
commit
a9ea6371b8
1 changed files with 0 additions and 9 deletions
  1. 0 9
      lib/single-file/doc-helper.js

+ 0 - 9
lib/single-file/doc-helper.js

@@ -387,15 +387,6 @@ this.docHelper = this.docHelper || (() => {
 		return docTypeString + doc.documentElement.outerHTML;
 	}
 
-	function getFontKey(style) {
-		return JSON.stringify([
-			style.fontFamily,
-			style.fontWeight,
-			style.fontStyle,
-			style.fontVariant
-		]);
-	}
-
 	function removeQuotes(string) {
 		if (string.match(REGEXP_SIMPLE_QUOTES_STRING)) {
 			string = string.replace(REGEXP_SIMPLE_QUOTES_STRING, "$1");