/**
* Check if array contains the item
* @param arr The array to search
* @param item The item to be searched
* @returns Return `true` if the array contains the item
*/exportfunctioncontains(arr = [], item) {
return arr.indexOf(item) !== -1;
}
//# sourceMappingURL=contains.js.map