(unicode)
| 6191 | ]; |
| 6192 | |
| 6193 | function getUnicodeRange(unicode) { |
| 6194 | for (var i = 0; i < unicodeRanges.length; i += 1) { |
| 6195 | var range = unicodeRanges[i]; |
| 6196 | if (unicode >= range.begin && unicode < range.end) { |
| 6197 | return i; |
| 6198 | } |
| 6199 | } |
| 6200 | |
| 6201 | return -1; |
| 6202 | } |
| 6203 | |
| 6204 | // Parse the OS/2 and Windows metrics `OS/2` table |
| 6205 | function parseOS2Table(data, start) { |
nothing calls this directly
no outgoing calls
no test coverage detected