(array, value)
| 532 | } |
| 533 | |
| 534 | function arrayRemove(array, value) { |
| 535 | var index = indexOf(array, value); |
| 536 | if (index >=0) |
| 537 | array.splice(index, 1); |
| 538 | return value; |
| 539 | } |
| 540 | |
| 541 | function isLeafNode (node) { |
| 542 | if (node) { |
no test coverage detected