function indexOf(array, value) { if (array.indexOf(value) > -1) { return true } else { return false } } module.exports = { indexOf: indexOf, }