(text)
| 142634 | } |
| 142635 | } |
| 142636 | function createSegment(text) { |
| 142637 | return { |
| 142638 | totalTextChunk: createTextChunk(text), |
| 142639 | subWordTextChunks: breakPatternIntoTextChunks(text) |
| 142640 | }; |
| 142641 | } |
| 142642 | function isUpperCaseLetter(ch) { |
| 142643 | // Fast check for the ascii range. |
| 142644 | if (ch >= 65 /* CharacterCodes.A */ && ch <= 90 /* CharacterCodes.Z */) { |
no test coverage detected
searching dependent graphs…