问题 I want to write a function that checks if an object has at least one value containing a substring. Something like this (pseudo-code): const userMatchesText = (text, user) => user.includes(text); The full structure of my objects ( So, for a user like the following: const user = { id: '123abc', info: { age: 12, bio: 'This is my bio' }, social: { chatName: 'Chris', friends: ['friend1', 'other friend'], blocks: ['Creep'] } //Etc. The objects I'm working with contain nested objects and arrays, etc