(obj: IdObj<Value> | any)
| 70 | export const objSize = (obj: IdObj<unknown>): number => size(objIds(obj)); |
| 71 | |
| 72 | export const objIsEmpty = <Value>(obj: IdObj<Value> | any): boolean => |
| 73 | isObject(obj) && objSize(obj) == 0; |
| 74 | |
| 75 | /*! istanbul ignore next */ |
| 76 | export const objIsEqual = ( |
no test coverage detected
searching dependent graphs…