{"version":3,"sources":["webpack:///./node_modules/lib-font/src/opentype/tables/simple/bitmap/EBDT.js","webpack:///./node_modules/lib-font/src/opentype/tables/simple/bitmap/CBDT.js"],"names":["EBDT","constructor","dict","dataview","name","p","super","this","majorVersion","uint16","minorVersion","CBDT"],"mappings":"6FAAA,uDAOA,MAAMA,UAAa,IACjBC,YAAYC,EAAMC,EAAUC,GAC1B,MACEC,EADaC,MAAMJ,EAAMC,EAAUC,GACxBC,EACbE,KAAKC,aAAeH,EAAEI,OACtBF,KAAKG,aAAeL,EAAEI,MACxB,E,mCCbF,yDAOA,MAAME,UAAa,OACjBV,YAAYC,EAAMC,GAChBG,MAAMJ,EAAMC,EAAU,OACxB,E","file":"js/8-d6a59911102c2c73bb61.chunk.js","sourcesContent":["import { SimpleTable } from \"../../simple-table.js\";\n\n/**\n * The OpenType `EBDT` table.\n *\n * See https://docs.microsoft.com/en-us/typography/opentype/spec/EBDT\n */\nclass EBDT extends SimpleTable {\n constructor(dict, dataview, name) {\n const _super = super(dict, dataview, name),\n p = _super.p;\n this.majorVersion = p.uint16;\n this.minorVersion = p.uint16;\n }\n\n // TODO: add a way to get the data out\n}\n\nexport { EBDT };","import { EBDT } from \"./EBDT.js\";\n\n/**\n * The OpenType `CBDT` table.\n *\n * See https://docs.microsoft.com/en-us/typography/opentype/spec/CBDT\n */\nclass CBDT extends EBDT {\n constructor(dict, dataview) {\n super(dict, dataview, `CBDT`);\n }\n\n // TODO: In addition to nine different formats already defined for glyph bitmap data in the EBDT table, there are three more formats\n}\n\nexport { CBDT };"],"sourceRoot":""}