lodash lets me check for membership of basic data types with includes:
includes
_.includes([1, 2, 3], 2) > true
But the following do
You could use find to solve your problem
find
https://lodash.com/docs/#find
const data = [{"a": 1}, {"b": 2}] const item = {"b": 2} find(data, item) // > true