import { leafs, merge, type JSONRecord } from '@redneckz/json-op'; import { box } from './JSONContentBox'; export const mergeJSON = (parent: C, child: C): C => merge(box(parent), leafs(box(child))) as C;