web-serial-rxjs API Documentation
    Preparing search index...

    Interface LineBufferOptions

    Options for createLineBuffer.

    Character counts use UTF-16 string length (JavaScript .length).

    interface LineBufferOptions {
        maxChars?: number;
    }
    Index
    maxChars?: number

    Maximum characters retained in the incomplete line tail (no line terminator yet). When exceeded, leading characters are discarded. 0 means unlimited. Must be a safe integer >= 0 when validated.

    1048576