(cmap)
| 1451 | }; |
| 1452 | |
| 1453 | function CmapEncoding(cmap) { |
| 1454 | this.cmap = cmap; |
| 1455 | } |
| 1456 | |
| 1457 | CmapEncoding.prototype.charToGlyphIndex = function(c) { |
| 1458 | return this.cmap.glyphIndexMap[c.charCodeAt(0)] || 0; |
nothing calls this directly
no outgoing calls
no test coverage detected