@karmaniverous/get-dotenv
    Preparing search index...

    Interface RedactTripleValues

    Triple of related values used by trace diagnostics:

    • parent: value from the parent process environment
    • dotenv: value from the composed dotenv map
    • final: effective value for the child process
    interface RedactTripleValues {
        dotenv?: string;
        final?: string;
        parent?: string;
    }
    Index

    Properties

    dotenv?: string

    Value from the composed dotenv map.

    final?: string

    Effective final value for the child process.

    parent?: string

    Value from the parent process environment.