# diip

> > Tool to find deep differences between two input arguments

Latest version **0.0.1** (published 2017-05-28) · MIT license · 0 weekly downloads

## Install

```sh
npm install diip
pnpm add diip
yarn add diip
bun add diip
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2017-05-28 |
| First published | 2017-05-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | g-harel |
| Maintainers | g-harel |

## Links

- npm: https://www.npmjs.com/package/diip
- Repository: https://github.com/g-harel/diip
- Homepage: https://github.com/g-harel/diip#readme
- Issues: https://github.com/g-harel/diip/issues
- npm.io page: https://npm.io/package/diip

## Recent versions

- 0.0.1 (latest) — 2017-05-28
- 0.0.0 — 2017-05-28

## README

# diip

> Tool to find deep differences between two input arguments

Returns an array of the addresses of each difference or null if they are deeply equal.

## Install

````
$ npm install --save diip
````

## Usage

````javascript
const diip = require('diip');

diip(0, 0); // null

diip([{a: 0}, {b: [0, 1, 2]}],
     [{a: 0}, {b: [0, 1, 2]}]); // null

diip([{a: 0}, {b: [null, 1, 2]}],
     [{a: true}, {b: [0, 1, 2]}]); // [['0', 'a'], ['1', 'b', '0']]
````

---
_Source: https://npm.io/package/diip · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
