( entries: [id: string, value: Value][] = [], )
| 27 | export const objFreeze = object.freeze; |
| 28 | |
| 29 | export const objNew = <Value>( |
| 30 | entries: [id: string, value: Value][] = [], |
| 31 | ): IdObj<Value> => object.fromEntries(entries); |
| 32 | |
| 33 | export const objMerge = (...objs: IdObj<unknown>[]) => |
| 34 | object.assign({}, ...objs); |
no outgoing calls
no test coverage detected
searching dependent graphs…