(text)
| 142724 | return result; |
| 142725 | } |
| 142726 | function createTextChunk(text) { |
| 142727 | var textLowerCase = text.toLowerCase(); |
| 142728 | return { |
| 142729 | text: text, |
| 142730 | textLowerCase: textLowerCase, |
| 142731 | isLowerCase: text === textLowerCase, |
| 142732 | characterSpans: breakIntoCharacterSpans(text) |
| 142733 | }; |
| 142734 | } |
| 142735 | function breakIntoCharacterSpans(identifier) { |
| 142736 | return breakIntoSpans(identifier, /*word:*/ false); |
| 142737 | } |
no test coverage detected
searching dependent graphs…