0.0.7 • Published 6 years ago

whether-object-match v0.0.7

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

What's "whether-object-match" ?

You can compare two objects in JavaScript using this npm package.

Example

var object_match = require("whether-object-match");
const a = {foo: "poteto",bar: "apple" }
const b = {bar: "apple",foo: "poteto" }
const c = {bar: "poteto",foo: "apple" }
console.log(object_match(a,b)) //true
console.log(object_match(b,c)) //false

Building

$ npm install whether-object-match@0.03
0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago