UNPKG

lib-font

Version:

A JS based OpenType font inspector

14 lines (10 loc) 275 B
import { CommonLayoutTable } from "../common-layout-table.js"; class GSUB extends CommonLayoutTable { constructor(dict, dataview) { super(dict, dataview, `GSUB`); } getLookup(lookupIndex) { return super.getLookup(lookupIndex, `GSUB`); } } export { GSUB };