@squawk
    Preparing search index...

    Interface MatchRange

    A contiguous run of matched characters within a candidate string, expressed as a half-open interval [start, end) of UTF-16 code-unit offsets into the original (un-lowercased) candidate.

    interface MatchRange {
        end: number;
        start: number;
    }
    Index

    Properties

    Properties

    end: number

    Offset just past the last matched character (exclusive).

    start: number

    Offset of the first matched character (inclusive).