as simple as that
const find = (objs, search) => objs.filter( obj => Object.values(obj).some( val => val.includes(search) ) );