| 2 | import { HeaderArray, HeaderTransformFunction } from './types'; |
| 3 | |
| 4 | export 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 | |
| 24 | export class ParserOptions { |
| 25 | public readonly escapedDelimiter: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…