Skip to content

Latest commit

 

History

History
95 lines (52 loc) · 1.9 KB

CSVTableParser.md

File metadata and controls

95 lines (52 loc) · 1.9 KB

@felisdiligens/md-table-tools / Exports / CSVTableParser

Class: CSVTableParser

Implements

Table of contents

Constructors

Properties

Methods

Constructors

constructor

new CSVTableParser(separator?, quote?, assumeFirstLineIsHeader?)

Parameters

Name Type Default value
separator string ","
quote string "\""
assumeFirstLineIsHeader boolean true

Defined in

tables/csvTable.ts:14

Properties

assumeFirstLineIsHeader

assumeFirstLineIsHeader: boolean = true

Defined in

tables/csvTable.ts:17


quote

quote: string = "\""

Defined in

tables/csvTable.ts:16


separator

separator: string = ","

Defined in

tables/csvTable.ts:15

Methods

parse

parse(table): Table

Parameters

Name Type
table string

Returns

Table

Implementation of

TableParser.parse

Defined in

tables/csvTable.ts:19