From d9be0edcd7cca81947f11ec5469cd29d5dce15ae Mon Sep 17 00:00:00 2001 From: Robert Janes Date: Fri, 3 Nov 2023 01:06:18 +0100 Subject: [PATCH] Fix `encodingID` capitalization typo (#138) --- src/opentype/tables/simple/cmap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opentype/tables/simple/cmap.js b/src/opentype/tables/simple/cmap.js index d1712eb..bd7505d 100644 --- a/src/opentype/tables/simple/cmap.js +++ b/src/opentype/tables/simple/cmap.js @@ -26,7 +26,7 @@ class cmap extends SimpleTable { getSupportedEncodings() { return this.encodingRecords.map((r) => ({ platformID: r.platformID, - encodingId: r.encodingID, + encodingID: r.encodingID, })); }