nest_dotted
Function
nest_dotted — transform fields in a record with dotted names to nested records.
Synopsis
nest_dotted(val: record) -> record
Description
The nest_dotted function returns a copy of val
with all dotted field names
converted into nested records.
Examples
values nest_dotted(this)
{"a.b.c":"foo"}
Loading...
echo '{"a.b.c":"foo"}' \
| super -s -c 'values nest_dotted(this)' -