(array, value)
| 937 | } |
| 938 | |
| 939 | function arrayRemove(array, value) { |
| 940 | var index = array.indexOf(value); |
| 941 | if (index >= 0) { |
| 942 | array.splice(index, 1); |
| 943 | } |
| 944 | return index; |
| 945 | } |
| 946 | |
| 947 | /** |
| 948 | * @ngdoc function |
no outgoing calls
no test coverage detected