Check that an object has the following values
Object to search
Criteria to check against
Only check the keys that are available on the target
Does target include all the values
const test = {a: 2, b: 2};includes(test, {a: 1}); // trueincludes(test, {b: 1, c: 3}); // false Copy
const test = {a: 2, b: 2};includes(test, {a: 1}); // trueincludes(test, {b: 1, c: 3}); // false
Check that an object has the following values