MCPcopy Create free account
hub / github.com/Inist-CNRS/node-csv-string / Comma

Method Comma

src/Parser.ts:119–127  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

117 }
118
119 private Comma(): Comma | undefined {
120 if (
121 this.input.slice(this.pointer, this.pointer + this.comma.length) ===
122 this.comma
123 ) {
124 this.pointer += this.comma.length;
125 return this.comma;
126 }
127 }
128
129 private LineBreak(): LineBreak | undefined {
130 if (this.input.slice(this.pointer, this.pointer + 2) === '\r\n') {

Callers 1

RowMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected