(array, value)
| 895 | } |
| 896 | |
| 897 | function arrayRemove(array, value) { |
| 898 | var index = array.indexOf(value); |
| 899 | if (index >= 0) { |
| 900 | array.splice(index, 1); |
| 901 | } |
| 902 | return index; |
| 903 | } |
| 904 | |
| 905 | /** |
| 906 | * @ngdoc function |
no outgoing calls
no test coverage detected