@blockchaincommons/dcbor-pattern - v1.0.0-beta.2
    Preparing search index...

    Interface PatternRegex

    A regex as the pattern language spells it, with its compiled form.

    interface PatternRegex {
        source: string;
        regex: RegExp;
    }
    Index
    source: string

    The text between the slashes, as written in a pattern.

    regex: RegExp

    The compiled regex, ready to test.