Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 203 Bytes

14083.md

File metadata and controls

17 lines (14 loc) · 203 Bytes

Quote numeric keys for json-stringify parser (#14083 by @fisker)

// Input
{0: 'value'}

// Prettier stable
{
  0: "value"
}

// Prettier main
{
  "0": "value"
}