Function logStringifySemicolonConfig

  • Stringify a config object to a semicolon separated string for logging

    Type Parameters

    • Out extends Record<string, unknown>

    Parameters

    • config: Out

      Object to stringify

    • show: undefined | ShowValueType
    • keysToHide: (keyof Out)[] = []

      Keys to hide

    Returns string

    Stringified config

    logStringifySemicolonConfig({a: 'b', c: 'd'}) // 'a=b;c=d'