(array, value)
| 769 | } |
| 770 | |
| 771 | function arrayRemove(array, value) { |
| 772 | var index = array.indexOf(value); |
| 773 | if (index >= 0) { |
| 774 | array.splice(index, 1); |
| 775 | } |
| 776 | return index; |
| 777 | } |
| 778 | |
| 779 | /** |
| 780 | * @ngdoc function |
no outgoing calls
no test coverage detected