deno_std icon indicating copy to clipboard operation
deno_std copied to clipboard

ini file value parsed with quotes contains quotes in value

Open dsherret opened this issue 1 year ago • 0 comments

> parse('value="value"')
{ value: '"value"' }

Should be:

{ value: "value" }

std 0.224.0

dsherret avatar May 21 '24 16:05 dsherret