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

    Interface BinaryCSVLexer<TrackLocation>

    Binary CSV Lexer interface

    BinaryCSVLexer tokenizes binary CSV data (Uint8Array) into fields and records.

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

    Type Parameters

    • TrackLocation extends boolean = false

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

    Index

    Methods

    Methods