Skip to main content

Well-formed JSON.stringify

Less than 1 minutefeaturees-proposalmissing-example

Well-formed JSON.stringifyopen in new window

Types

interface JSON {
  stringify(
    target: any,
    replacer?:
      | Array<string | number>
      | ((key: string, value: any) => any)
      | null,
    space?: string | number
  ): string | void;
}

Entry points

core-js/proposals/well-formed-stringify