CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
1export type Replacer = (number | string)[] | null | undefined | ((key: string, value: unknown) => string | number | boolean | null | object)2 3export function stringify(value: undefined | symbol | ((...args: unknown[]) => unknown), replacer?: Replacer, space?: string | number): undefined4export function stringify(value: string | number | unknown[] | null | boolean | object, replacer?: Replacer, space?: string | number): string5export function stringify(value: unknown, replacer?: ((key: string, value: unknown) => unknown) | (number | string)[] | null | undefined, space?: string | number): string | undefined6 7export interface StringifyOptions {8  bigint?: boolean,9  circularValue?: string | null | TypeErrorConstructor | ErrorConstructor,10  deterministic?: boolean | ((a: string, b: string) => number),11  maximumBreadth?: number,12  maximumDepth?: number,13  strict?: boolean,14}15 16export namespace stringify {17  export function configure(options: StringifyOptions): typeof stringify18}19 20export function configure(options: StringifyOptions): typeof stringify21 22export default stringify23