(cc)
| 266 | * @returns {boolean} true, if cc is a newline (per the spec: LF, CR, or FF) |
| 267 | */ |
| 268 | const _isNewline = (cc) => |
| 269 | cc === CC_LINE_FEED || cc === CC_CARRIAGE_RETURN || cc === CC_FORM_FEED; |
| 270 | |
| 271 | /** |
| 272 | * If the source had a CR followed by an LF, advance past the LF — |
no outgoing calls
no test coverage detected