• Recursively dumps obj Object as comma-separated string of key=value pairs Example: v({a:2,b:{c:3}}) = 'a=2, b=(c=3)

    Type Parameters

    • T

    Parameters

    • obj: T & Record<string, any>

      {any} Object to dump

    • Optional ignoreProps: [] | (keyof T)[] & string[]

      {string[]=} (Optional) Properties to ignore, array of strings

    • Optional options: IKeyValueOptions

      {IKeyValueOptions=} (Optional) Options for the function

    Returns string