Function: coerceObjectValue()
ts
function coerceObjectValue(value): string | boolean;Defined in: packages/parser/src/utils.ts:77
Default value coercion for Object type. Converts "true" / "" to true, "false" to false, other values remain unchanged.
Parameters
| Parameter | Type | Description |
|---|---|---|
|
| The raw string value from CLI |
Returns
string | boolean
Coerced value (boolean or string)

