function indexOf(str, val) { if (str.indexOf(val) != -1) { return true; } else { return false; } } module.exports = { indexOf: indexOf }