UNPKG

lib-font

Version:

A JS based OpenType font inspector

17 lines (14 loc) 376 B
import { SimpleTable } from "../../simple-table.js"; import lazy from "../../../../lazy.js"; /** * The OpenType `CFF` table. * * See https://docs.microsoft.com/en-us/typography/opentype/spec/CFF */ class CFF extends SimpleTable { constructor(dict, dataview) { const { p } = super(dict, dataview); lazy(this, `data`, () => p.readBytes()); } } export { CFF };