(status)
| 35 | return splitCells(row).every((cell) => /^:?-{2,}:?$/.test(cell)); |
| 36 | } |
| 37 | |
| 38 | function normalizeStatus(status) { |
| 39 | return String(status || 'pending').trim().toLowerCase() || 'pending'; |
| 40 | } |
| 41 | |
| 42 | function parseList(value) { |
no outgoing calls
no test coverage detected