(obj: Object)
| 166 | } |
| 167 | |
| 168 | export function objectNotEmpty(obj: Object): boolean { |
| 169 | return Object.keys(obj).length > 0; |
| 170 | } |
| 171 | |
| 172 | function deleteUndefined<InputType extends Record<string, any | undefined>>( |
| 173 | obj: InputType, |
no outgoing calls
no test coverage detected