(c)
| 143 | } |
| 144 | } |
| 145 | function isWhitespace(c) { |
| 146 | // Could change to \s? |
| 147 | var code = c.charCodeAt(0); |
| 148 | return code === 32 || code === 10 || code === 9; |
| 149 | } |
| 150 | // |
| 151 | // Parse from a token, regexp or string, and move forward if match |
| 152 | // |
no outgoing calls
no test coverage detected