1 2 3 4 5 6 7
var includes = function includes(arr, val) { return arr.some(function (arrVal) { return val === arrVal; }); }; export default includes;