UNPKG
lib-font
Version:
latest (3.0.0)
3.0.0
2.6.0
2.5.1
2.5.0
2.4.3
2.4.2
2.4.1
2.4.0
2.3.7
2.3.6
2.3.5
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
2.2.0
2.1.1
2.1.0
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
A JS based OpenType font inspector
github.com/Pomax/lib-font
Pomax/lib-font
lib-font
/
src
/
opentype
/
tables
/
simple
/
bitmap
/
CBLC.js
15 lines
(12 loc)
•
263 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { EBLC } from
"./EBLC.js"
;
/** * The OpenType `CBLC` table. * * See https:/
/docs.microsoft.com/
en-us/typography/opentype/spec/CBLC */
class
CBLC
extends
EBLC
{ constructor(dict, dataview) { super(dict, dataview,
`CBLC`
); } } export { CBLC };