(array, value)
| 697 | } |
| 698 | |
| 699 | function arrayRemove(array, value) { |
| 700 | var index = array.indexOf(value); |
| 701 | if (index >= 0) |
| 702 | array.splice(index, 1); |
| 703 | return value; |
| 704 | } |
| 705 | |
| 706 | /** |
| 707 | * @ngdoc function |
no outgoing calls
no test coverage detected