MCPcopy Index your code
hub / github.com/plotly/dash / getNullyCases

Function getNullyCases

components/dash-table/src/dash-table/derived/data/virtual.ts:36–40  ·  view source on GitHub ↗
(columnId: ColumnId)

Source from the content-addressed store, hash-verified

34 }
35
36 const getNullyCases = (columnId: ColumnId): SortAsNull => {
37 const column = R.find(c => c.id === columnId, columns);
38
39 return (column && column.sort_as_null) || [];
40 };
41
42 const isNully = (value: any, columnId: ColumnId): any =>
43 R.isNil(value) || R.includes(value, getNullyCases(columnId));

Callers 1

isNullyFunction · 0.85

Calls 1

findMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…