@jswalden/streaming-json
    Preparing search index...

    Type Alias ReplacerFunction

    ReplacerFunction: (this: object, key: string, value: unknown) => unknown

    A replacer function, applied to each object/property name/value in the overall graph created during stringification. See JSON.stringify documentation for precise details.

    Note that when the pertinent object is an array, keys are strings and not numerical indexes.

    Type declaration

      • (this: object, key: string, value: unknown): unknown
      • Parameters

        • this: object
        • key: string
        • value: unknown

        Returns unknown