json2yaml icon indicating copy to clipboard operation
json2yaml copied to clipboard

Escape keys containing @

Open Tienisto opened this issue 2 years ago • 0 comments

I want to integrate this library into one of my libraries and I came accross this problem:

json2yaml({
  '@key': 'Value',
})

Which is valid in json but it generates

@key: value

Which is invalid in yaml.

Tienisto avatar Oct 27 '22 21:10 Tienisto