function contains(list, elem) { return list.indexOf(elem) !== -1; } module.exports = { contains: contains }