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
/
cmap
/
subtable.js
12 lines
(9 loc)
•
239 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
ParsedData
}
from
"../../../../parser.js"
;
class
Subtable
extends
ParsedData
{
constructor
(
p, plaformID, encodingID
) {
super
(p);
this
.
plaformID
= plaformID;
this
.
encodingID
= encodingID; } }
export
{
Subtable
};