0.0.7 • Published 4 years ago

whether-object-match v0.0.7

Weekly downloads
3
License
MIT
Repository
github
Last release
4 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

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago