(a: any)
| 20 | }; |
| 21 | |
| 22 | export const isPresent = (a: any) => !isUndefinedOrNull(a); |
| 23 | |
| 24 | export const filterEmptyRows = (state: SheetState) => { |
| 25 | return state.rows.filter((d) => Object.keys(d).length > 0); |
nothing calls this directly
no test coverage detected