impasto
    Preparing search index...

    Interface RedactEntry

    Defines how to redact a specific type of sensitive information.

    interface RedactEntry {
        replace?: string;
        search: string[];
    }
    Index

    Properties

    Properties

    replace?: string

    The replacement string to use when redacting the information.

    ""

    search: string[]

    The regular expressions to use when finding the information to redact.

    Note: All expressions will use the global (/g) and case-insensitive (/i) flags.