Consider the following call: ```js styleParser('background: url("foo.bpm; display: none; fooled:")') ``` This produces incorrect output: ```js { background: "url(\"foo.bpm", display: "none", fooled: "\")" } ``` Whereas it should be `{ background: 'url(...)' }`
Consider the following call:
This produces incorrect output:
Whereas it should be
{ background: 'url(...)' }