Predicate function checking if haystack object contains needle object
npm install object-containsPredicate function checking if haystack object contains needle object
``js
var contains = require('object-contains');
var obj = { can: 'help', nope: true };
contains(obj, { nope: true }); // ==> true
contains(obj, { nope: false }); // ==> false
``