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

    A CBOR tag with an optional name.

    Tags consist of a numeric value and an optional human-readable name.

    Note on equality: tags compare by value only - two tags with the same value but different names are equal. Use Tag.equals for this; raw === on Tag objects compares by reference.

    interface Tag {
        value: CborNumber;
        name?: string;
    }
    Index
    value: CborNumber

    The numeric tag value

    name?: string

    Optional human-readable name for the tag