(array, value)
| 32629 | } |
| 32630 | |
| 32631 | function arrayRemove(array, value) { |
| 32632 | var index = array.indexOf(value); |
| 32633 | if (index >= 0) { |
| 32634 | array.splice(index, 1); |
| 32635 | } |
| 32636 | return index; |
| 32637 | } |
| 32638 | |
| 32639 | /** |
| 32640 | * @ngdoc function |
no outgoing calls
no test coverage detected