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

    Interface BinaryCSVLexer

    Binary CSV Lexer interface

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

    interface BinaryCSVLexer {
        lex(
            chunk?: Uint8Array<ArrayBufferLike>,
            options?: CSVLexerLexOptions,
        ): IterableIterator<Token>;
    }
    Index

    Methods

    Methods