(heap)
| 2135 | } |
| 2136 | } |
| 2137 | function peek(heap) { |
| 2138 | return 0 === heap.length ? null : heap[0]; |
| 2139 | } |
| 2140 | function pop(heap) { |
| 2141 | if (0 === heap.length) return null; |
| 2142 | var first = heap[0], |
no outgoing calls
no test coverage detected
searching dependent graphs…