UNPKG

@omnigraph/odata

Version:
12 lines (11 loc) 318 B
export function rebuildOpenInputObjects(input) { if (typeof input === 'object') { if ('rest' in input) { Object.assign(input, input.rest); delete input.rest; } for (const fieldName in input) { rebuildOpenInputObjects(input[fieldName]); } } }