(array, value)
| 791 | } |
| 792 | |
| 793 | function arrayRemove(array, value) { |
| 794 | var index = array.indexOf(value); |
| 795 | if (index >= 0) { |
| 796 | array.splice(index, 1); |
| 797 | } |
| 798 | return index; |
| 799 | } |
| 800 | |
| 801 | /** |
| 802 | * @ngdoc function |
no outgoing calls
no test coverage detected