@avanio/variable-util
    Preparing search index...

    Function logStringifySemicolonConfig

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

      Type Parameters

      • Out extends Record<string, unknown>

        Type of output

      Parameters

      • config: Out

        Object to stringify

      • showProtectedKeys: undefined | ShowValueType

        How to show protected keys

      • protectedKeys: Set<keyof Out>

        list of protected keys

      Returns string

      Stringified config

      v1.0.0

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