()
| 137 | function restore() { chunks[j] = temp, i = memo, current = i; } |
| 138 | |
| 139 | function sync() { |
| 140 | if (i > current) { |
| 141 | chunks[j] = chunks[j].slice(i - current); |
| 142 | current = i; |
| 143 | } |
| 144 | } |
| 145 | function isWhitespace(c) { |
| 146 | // Could change to \s? |
| 147 | var code = c.charCodeAt(0); |
no outgoing calls
no test coverage detected