Skip to content

Instantly share code, notes, and snippets.

@Git-I985
Created March 6, 2023 12:28
Show Gist options
  • Save Git-I985/3e299f40183be05b58ca32da44ace949 to your computer and use it in GitHub Desktop.
Save Git-I985/3e299f40183be05b58ca32da44ace949 to your computer and use it in GitHub Desktop.
Find where
export default (searchIn, searchVal) => searchIn.find(item => Object.keys(searchVal).every(searchKey => item[searchKey] === searchVal[searchKey])) || null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment