(value: any, columnId: ColumnId)
| 40 | }; |
| 41 | |
| 42 | const isNully = (value: any, columnId: ColumnId): any => |
| 43 | R.isNil(value) || R.includes(value, getNullyCases(columnId)); |
| 44 | |
| 45 | if (sort_action === TableAction.Native) { |
| 46 | data = sort(data, sort_by, isNully); |
nothing calls this directly
no test coverage detected
searching dependent graphs…