(array, value)
| 817 | } |
| 818 | |
| 819 | function arrayRemove(array, value) { |
| 820 | var index = array.indexOf(value); |
| 821 | if (index >= 0) { |
| 822 | array.splice(index, 1); |
| 823 | } |
| 824 | return index; |
| 825 | } |
| 826 | |
| 827 | /** |
| 828 | * @ngdoc function |
no outgoing calls
no test coverage detected