(file)
| 367 | } |
| 368 | |
| 369 | function isFileLike(file) { |
| 370 | return !!file && typeof file === 'object' && typeof file.name === 'string'; |
| 371 | } |
| 372 | |
| 373 | function ensureRow(item) { |
| 374 | if (rows.has(item.id)) return rows.get(item.id); |
no outgoing calls
no test coverage detected