MCPcopy Create free account
hub / github.com/C2FO/fast-csv / ParserOptionsArgs

Interface ParserOptionsArgs

packages/parse/src/ParserOptions.ts:4–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { HeaderArray, HeaderTransformFunction } from './types';
3
4export interface ParserOptionsArgs {
5 objectMode?: boolean;
6 delimiter?: string;
7 quote?: string | null;
8 escape?: string;
9 headers?: boolean | HeaderTransformFunction | HeaderArray;
10 renameHeaders?: boolean;
11 ignoreEmpty?: boolean;
12 comment?: string;
13 strictColumnHandling?: boolean;
14 discardUnmappedColumns?: boolean;
15 trim?: boolean;
16 ltrim?: boolean;
17 rtrim?: boolean;
18 encoding?: string;
19 maxRows?: number;
20 skipLines?: number;
21 skipRows?: number;
22}
23
24export class ParserOptions {
25 public readonly escapedDelimiter: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…