UNPKG

lib-font

Version:

A JS based OpenType font inspector

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