Function: setDotValues()
ts
function setDotValues(obj, path, value): void;Defined in: packages/parser/src/utils.ts:96
Sets a value at a nested path in an object, creating intermediate objects as needed. Does NOT apply type conversion - value is set as-is. Overwrites existing values.
Parameters
| Parameter | Type | Description |
|---|---|---|
|
| The target object |
|
| Dot-separated path (e.g., "foo.bar.baz") |
|
| The value to set (used as-is, no type conversion) |
Returns
void

