1.0.7 • Published 2 years ago

simple-deepcompare v1.0.7

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

Simple Deep Compare Object

This package help you to compare two objects. Built in typescript. Zero depedencies

console.log(deepCompare({ foo: "bar" }, { foo: "bar" })); // true
console.log(deepCompare({ foo: "bar" }, { foo: 2 })); // false

console.log(
  deepCompare(
    {
      a: "something",
      b: { a: "something", c: { arr: [1, 2, 3] } },
      c: {
        a: "something",
        b: {
          a: "something",
          c: { bool: false },
          d: { a: "something", b: { a: "something", c: { bool: false } } },
        },
      },
    },
    {
      a: "something",
      b: { a: "something", c: { arr: [1, 2, 3] } },
      c: {
        a: "something",
        b: {
          a: "something",
          c: { bool: false },
          d: { a: "something", b: { a: "something", c: { bool: false } } },
        },
      },
    }
  )
); // true

Installation

Using npm:

$ npm install simple-deepcompare

Using pnpm:

$ pnpm install simple-deepcompare

Usage

in Node JS:

const deepCompare = require("simple-deepcompare").deepCompare;

console.log(deepCompare({ foo: "bar" }, { foo: "bar" })); // true

in Browser:

import { deepCompare } from "simple-deepcompare";

console.log(deepCompare({ foo: "bar" }, { foo: "bar" })); // true

License

MIT © Azharie Muhammad