跳至主要內容

结构良好的 JSON.stringify

小于 1 分钟featurees-proposalmissing-example

结构良好的 JSON.stringifyopen in new window

类型

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

入口点

core-js/proposals/well-formed-stringify