(encoding, charset)
| 1459 | }; |
| 1460 | |
| 1461 | function CffEncoding(encoding, charset) { |
| 1462 | this.encoding = encoding; |
| 1463 | this.charset = charset; |
| 1464 | } |
| 1465 | |
| 1466 | CffEncoding.prototype.charToGlyphIndex = function(s) { |
| 1467 | var code = s.charCodeAt(0); |
nothing calls this directly
no outgoing calls
no test coverage detected