(array, obj)
| 923 | } |
| 924 | |
| 925 | function includes(array, obj) { |
| 926 | return Array.prototype.indexOf.call(array, obj) !== -1; |
| 927 | } |
| 928 | |
| 929 | function arrayRemove(array, value) { |
| 930 | var index = array.indexOf(value); |
no outgoing calls
no test coverage detected