jsesc icon indicating copy to clipboard operation
jsesc copied to clipboard

use minimal form for property names when possible

Open skeggse opened this issue 4 years ago • 0 comments

Feature request:

// Current behavior
> jsesc({ key: 'value' }, { minimal: true })
'{\'key\':\'value\'}'
// Preferred behavior
> jsesc({ key: 'value' }, { minimal: true })
'{key:\'value\'}'

skeggse avatar Mar 30 '20 21:03 skeggse