(array, value)
| 735 | } |
| 736 | |
| 737 | function arrayRemove(array, value) { |
| 738 | var index = array.indexOf(value); |
| 739 | if (index >=0) |
| 740 | array.splice(index, 1); |
| 741 | return value; |
| 742 | } |
| 743 | |
| 744 | function isLeafNode (node) { |
| 745 | if (node) { |
no outgoing calls
no test coverage detected