{"version":3,"sources":["webpack:///./node_modules/lib-font/src/opentype/tables/simple/ttf/cvt.js"],"names":["cvt","constructor","dict","dataview","p","super","n","length","this","Array","map","_","fword"],"mappings":"2FAAA,6DAQA,MAAMA,UAAY,IAChBC,YAAYC,EAAMC,GAChB,MACEC,EADaC,MAAMH,EAAMC,GACdC,EAQPE,EAAIJ,EAAKK,OAAS,EACxB,YAAKC,KAAM,SAAS,IAAM,IAAI,IAAIC,MAAMH,IAAII,KAAIC,GAAKP,EAAEQ,SACzD,E","file":"js/38-48335622508fac021430.chunk.js","sourcesContent":["import { SimpleTable } from \"../../simple-table.js\";\nimport lazy from \"../../../../lazy.js\";\n\n/**\n * The OpenType `cvt` table.\n *\n * See https://docs.microsoft.com/en-us/typography/opentype/spec/cvt\n */\nclass cvt extends SimpleTable {\n constructor(dict, dataview) {\n const _super = super(dict, dataview),\n p = _super.p;\n //\n // The actual data is n instructions, where n is the number of\n // FWORD items that fit in the size of the table. That is:\n //\n // n = table length / sizeof(int16)\n // = table length / 2;\n //\n const n = dict.length / 2;\n lazy(this, `items`, () => [...new Array(n)].map(_ => p.fword));\n }\n}\nexport { cvt };"],"sourceRoot":""}