🎨 Prettier formatting

This commit is contained in:
Kiliman
2019-07-24 09:46:15 -04:00
committed by unknown
parent 86b1d66f15
commit 371be6a082
+4 -6
View File
@@ -266,12 +266,10 @@ const patchGsub = (dom, ligatures) => {
// don't patch if no ligatures other than LIG
if (ligatures.length <= 1) return;
ligatures
//.filter(ligature => /_/.test(ligature.glyph))
.forEach(ligature => {
// build gsub tables
gsub.buildGsubTables(dom, ligature);
});
ligatures.forEach(ligature => {
// build gsub tables
gsub.buildGsubTables(dom, ligature);
});
gsub.finalizeGsubTables();
};