MCPcopy Create free account
hub / github.com/denoland/std / createQuoteErrorMessage

Function createQuoteErrorMessage

csv/_io.ts:215–225  ·  view source on GitHub ↗
(
  zeroBasedRecordStartLine: number,
  zeroBasedLine: number,
  zeroBasedColumn: number,
)

Source from the content-addressed store, hash-verified

213 }: bare " in non-quoted-field`;
214}
215export function createQuoteErrorMessage(
216 zeroBasedRecordStartLine: number,
217 zeroBasedLine: number,
218 zeroBasedColumn: number,
219) {
220 return `Syntax error on line ${
221 zeroBasedRecordStartLine + 1
222 }; parse error on line ${zeroBasedLine + 1}, column ${
223 zeroBasedColumn + 1
224 }: extraneous or missing " in quoted-field`;
225}
226
227export function convertRowToObject(
228 row: readonly string[],

Callers 2

#parseRecordMethod · 0.90
parseRecordFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected