[cli] css content '\a0' convert to jss is not correct
Open
- Dominant language
- JavaScript
- Stars
- 7.1k
- Forks
- 386
- PR merge metrics
- No merged PRs in 30d
Description
https://sudos.tools/css-to-jss, i think this web tool use jss-cli,

as you see, content '\a0' represents a space, when it converts to jss, the result is `"'\\\\a0'"`,
then, i convert jss. to css

css->jss
`'\a0'` -> `"'\\\\a0'"`
then jss->css
`"'\\\\a0'"` ->`'\\a0'`
what is expected:
css->jss
`'\a0'` -> `"'\\a0'"`
then jss->css
`"'\\a0'"` ->`'\a0'`
Contributor guide
Assessment
This issue has not been assessed yet.