(array, value)
| 713 | } |
| 714 | |
| 715 | function arrayRemove(array, value) { |
| 716 | var index = array.indexOf(value); |
| 717 | if (index >= 0) |
| 718 | array.splice(index, 1); |
| 719 | return value; |
| 720 | } |
| 721 | |
| 722 | /** |
| 723 | * @ngdoc function |
no outgoing calls
no test coverage detected