MCPcopy Create free account
hub / github.com/dchester/jsonpath / isLineTerminator

Function isLineTerminator

jsonpath.js:244–246  ·  view source on GitHub ↗
(ch)

Source from the content-addressed store, hash-verified

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

Callers 5

skipSingleLineCommentFunction · 0.85
skipMultiLineCommentFunction · 0.85
skipCommentFunction · 0.85
scanStringLiteralFunction · 0.85
scanRegExpBodyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected