Skip to content

Instantly share code, notes, and snippets.

@ThomasKruegl
Last active August 29, 2019 15:10
Show Gist options
  • Save ThomasKruegl/ff2abaf8e1560bbb618a3a476beff8d0 to your computer and use it in GitHub Desktop.
Save ThomasKruegl/ff2abaf8e1560bbb618a3a476beff8d0 to your computer and use it in GitHub Desktop.
function hasText(obj, text) {
return Object.values(obj).some( value => {
if (typeof value === "object") {
return hasText(value, text);
} else {
return typeof value === "string" && value.includes(text)
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment