# universal-deep-strict-equal

> A port of Node v6's internal _deepEqual function in a universal style

Latest version **1.2.2** (published 2016-07-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install universal-deep-strict-equal
pnpm add universal-deep-strict-equal
yarn add universal-deep-strict-equal
bun add universal-deep-strict-equal
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.2 |
| Published | 2016-07-11 |
| First published | 2016-05-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 18 |
| Author | Takuto Wada |
| Maintainers | twada |
| Keywords | assert, assertion, builtin, core, deep, deep-equal, deep-strict-equal, eq, equal, equality, same, strict, test, testing |

## Links

- npm: https://www.npmjs.com/package/universal-deep-strict-equal
- Repository: https://github.com/twada/universal-deep-strict-equal
- Issues: https://github.com/twada/universal-deep-strict-equal/issues
- npm.io page: https://npm.io/package/universal-deep-strict-equal

## Dependencies (3)

- [indexof](https://npm.io/package/indexof.md) 0.0.1
- [object-keys](https://npm.io/package/object-keys.md) ^1.0.0
- [array-filter](https://npm.io/package/array-filter.md) ^1.0.0

## Alternatives

- [duck](https://npm.io/package/duck.md) — 4.2M weekly downloads
- [ava](https://npm.io/package/ava.md) — 560.2K weekly downloads
- [storybook-addon-module-mock](https://npm.io/package/storybook-addon-module-mock.md) — 71.7K weekly downloads
- [vest](https://npm.io/package/vest.md) — 50.1K weekly downloads
- [@ethereum-waffle/mock-contract](https://npm.io/package/@ethereum-waffle/mock-contract.md) — 40.0K weekly downloads

## Recent versions

- 1.2.2 (latest) — 2016-07-11
- 1.2.1 — 2016-05-06
- 1.2.0 — 2016-05-06
- 1.1.0 — 2016-05-05
- 1.0.0 — 2016-05-03
- 0.1.0 — 2016-05-02

## README

universal-deep-strict-equal
================================

A port of [Node v6's internal _deepEqual function](https://github.com/nodejs/node/blob/v6.3.0/lib/assert.js#L145) in a universal style.

[![Build Status][travis-image]][travis-url]
[![NPM version][npm-image]][npm-url]
[![License][license-image]][license-url]

[![Sauce Test Status][saucelabs-image]][saucelabs-url]

*Issues and improvements should be done in [Node.js](https://github.com/nodejs/node/issues) first.*


API
---------------------------------------

`deepEqual(actual, expected, [strict])`


USAGE
---------------------------------------

```javascript
var deepEqual = require('universal-deep-strict-equal');

deepEqual({a:1}, {a:'1'}); // => true
deepEqual({a:1}, {a:'1'}, false); // => true
deepEqual({a:1}, {a:'1'}, true); // => false
```


INSTALL
---------------------------------------

```
npm install universal-deep-strict-equal
```


AUTHOR
---------------------------------------
* [Takuto Wada](https://github.com/twada)


CONTRIBUTORS
---------------------------------------
* [azu](https://github.com/azu)


LICENSE
---------------------------------------
Licensed under the [MIT](http://twada.mit-license.org/) license.


[travis-url]: https://travis-ci.org/twada/universal-deep-strict-equal
[travis-image]: https://secure.travis-ci.org/twada/universal-deep-strict-equal.svg?branch=master

[npm-url]: https://npmjs.org/package/universal-deep-strict-equal
[npm-image]: https://badge.fury.io/js/universal-deep-strict-equal.svg

[license-url]: http://twada.mit-license.org/
[license-image]: https://img.shields.io/badge/license-MIT-brightgreen.svg

[saucelabs-url]: https://saucelabs.com/u/udse
[saucelabs-image]: https://saucelabs.com/browser-matrix/udse.svg

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