(array, obj)
| 908 | } |
| 909 | |
| 910 | function includes(array, obj) { |
| 911 | return Array.prototype.indexOf.call(array, obj) !== -1; |
| 912 | } |
| 913 | |
| 914 | function arrayRemove(array, value) { |
| 915 | var index = array.indexOf(value); |
no outgoing calls
no test coverage detected