object_matching

0.0.2 • Public • Published

MIT License npm version Build Status

object_matching

💬 About

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

💁‍♂️ example

var object_match = require("object_matching");
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

🔰 install

$ npm install object_matching

Readme

Keywords

Package Sidebar

Install

npm i object_matching

Weekly Downloads

2

Version

0.0.2

License

MIT

Unpacked Size

4.2 kB

Total Files

6

Last publish

Collaborators

  • katsuomi