(array, value)
| 798 | } |
| 799 | |
| 800 | function arrayRemove(array, value) { |
| 801 | var index = array.indexOf(value); |
| 802 | if (index >= 0) { |
| 803 | array.splice(index, 1); |
| 804 | } |
| 805 | return index; |
| 806 | } |
| 807 | |
| 808 | /** |
| 809 | * @ngdoc function |
no outgoing calls
no test coverage detected