(array, value)
| 777 | } |
| 778 | |
| 779 | function arrayRemove(array, value) { |
| 780 | var index = indexOf(array, value); |
| 781 | if (index >=0) |
| 782 | array.splice(index, 1); |
| 783 | return value; |
| 784 | } |
| 785 | |
| 786 | function isLeafNode (node) { |
| 787 | if (node) { |
no test coverage detected