(table: Table, tableId: Id)
| 396 | objValidate(tables, validateTable, cellInvalid); |
| 397 | |
| 398 | const validateTable = (table: Table, tableId: Id): boolean => |
| 399 | (!hasTablesSchema || |
| 400 | collHas(tablesSchemaMap, tableId) || |
| 401 | /*! istanbul ignore next */ |
| 402 | (cellInvalid(tableId) as boolean)) && |
| 403 | objValidate( |
| 404 | table, |
| 405 | (row: Row, rowId: Id): boolean => validateRow(tableId, rowId, row), |
| 406 | () => cellInvalid(tableId), |
| 407 | ); |
| 408 | |
| 409 | const validateRow = ( |
| 410 | tableId: Id, |
no test coverage detected
searching dependent graphs…