Optional
When 'in-place', arrays' and objects' values are parsed in-place. This is the most time and space efficient option.
'in-place'
This can result in runtime errors if some objects/arrays are readonly.
When 'create', new arrays and objects are created to avoid such errors.
'create'
Defaults to 'in-place'.
When
'in-place'
, arrays' and objects' values are parsed in-place. This is the most time and space efficient option.This can result in runtime errors if some objects/arrays are readonly.
When
'create'
, new arrays and objects are created to avoid such errors.Defaults to
'in-place'
.