(ch)
| 245 | // 7.3 Line Terminators |
| 246 | |
| 247 | function isLineTerminator(ch) { |
| 248 | return (ch === 0x0A) || (ch === 0x0D) || (ch === 0x2028) || (ch === 0x2029); |
| 249 | } |
| 250 | |
| 251 | // 7.6 Identifier Names and Identifiers |
| 252 |
no outgoing calls
no test coverage detected