web-csv-toolbox - v0.15.0
    Preparing search index...

    Interface StringCSVLexer<TrackLocation>

    String CSV Lexer interface

    StringCSVLexer tokenizes string CSV data into fields and records.

    interface StringCSVLexer<TrackLocation extends boolean = false> {
        lex(
            chunk?: string,
            options?: CSVLexerLexOptions,
        ): IterableIterator<Token<TrackLocation>>;
    }

    Type Parameters

    • TrackLocation extends boolean = false

      Whether to include location information in tokens (default: false)

    Implemented by

    Index

    Methods

    Methods