(heap)
| 3044 | siftUp(heap, node, index); |
| 3045 | } |
| 3046 | function peek(heap) { |
| 3047 | var first = heap[0]; |
| 3048 | return first === undefined ? null : first; |
| 3049 | } |
| 3050 | function pop(heap) { |
| 3051 | var first = heap[0]; |
| 3052 |
no outgoing calls
no test coverage detected