(array, obj)
| 891 | } |
| 892 | |
| 893 | function includes(array, obj) { |
| 894 | return Array.prototype.indexOf.call(array, obj) !== -1; |
| 895 | } |
| 896 | |
| 897 | function arrayRemove(array, value) { |
| 898 | var index = array.indexOf(value); |
no outgoing calls
no test coverage detected