(state: SheetState)
| 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); |
| 26 | }; |
| 27 | |
| 28 | export function isEmptyCell(value: any): boolean { |
| 29 | if (isUndefinedOrNull(value)) { |
no outgoing calls
no test coverage detected