(array, obj)
| 933 | } |
| 934 | |
| 935 | function includes(array, obj) { |
| 936 | return Array.prototype.indexOf.call(array, obj) !== -1; |
| 937 | } |
| 938 | |
| 939 | function arrayRemove(array, value) { |
| 940 | var index = array.indexOf(value); |
no outgoing calls
no test coverage detected