(id: DroppableId)
| 111 | }; |
| 112 | |
| 113 | function findDroppableById(id: DroppableId): DroppableEntry | null { |
| 114 | return entries.droppables[id] || null; |
| 115 | } |
| 116 | |
| 117 | function getDroppableById(id: DroppableId): DroppableEntry { |
| 118 | const entry: DroppableEntry | null = findDroppableById(id); |
no outgoing calls
no test coverage detected
searching dependent graphs…