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