(array, value)
| 927 | } |
| 928 | |
| 929 | function arrayRemove(array, value) { |
| 930 | var index = array.indexOf(value); |
| 931 | if (index >= 0) { |
| 932 | array.splice(index, 1); |
| 933 | } |
| 934 | return index; |
| 935 | } |
| 936 | |
| 937 | /** |
| 938 | * @ngdoc function |
no outgoing calls
no test coverage detected