(array, value)
| 913 | } |
| 914 | |
| 915 | function arrayRemove(array, value) { |
| 916 | var index = array.indexOf(value); |
| 917 | if (index >= 0) { |
| 918 | array.splice(index, 1); |
| 919 | } |
| 920 | return index; |
| 921 | } |
| 922 | |
| 923 | /** |
| 924 | * @ngdoc function |
no outgoing calls
no test coverage detected