1.0.0 • Published 6 years ago

objects-compare v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

objects-compare

compare objects in NodeJs

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

none

Examples

const CompareObjs = require('./index');

var cobj = new CompareObjs ( 1,2,3, 1,4,3, {deep:'hasPart'} ); console.log(cobj.contain()); //false

var cobj = new CompareObjs ( 1,2,3, 1,4,3, {deep:'hasOnly'} ); console.log(cobj.contain()); //false