Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

not-so-shallow

sotojuan45.5kMITdeprecated0.1.4

This package is no longer in development

A less shallow only-shallow

deeper, deepest, deepEqual, shallow, equal, equality, strict

readme

not-so-shallow

A less shallow only-shallow

Build Status

This is just only-shallow but with strict equality for value types.

Install

$ npm install --save not-so-shallow

Usage

let notSoShallow = require('not-so-shallow')

notSoShallow({a: 0}, {a: false}) // false
notSoShallow({a: 0}, {a: '0'}) // false
notSoShallow({a: 1}, {a: 1}) // true
notSoShallow({a: 1, b: 2}, {b: 2, a: 1}) // true

API

notSoShallow(a, b)

Returns true if a and b are the same according to the algorithm, which is explained in the comments of index.js.

License

MIT © Juan Soto