module.exports = function includes(pattern){ return function(d){ return d && d.indexOf && ~d.indexOf(pattern) } }