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