not-so-shallow

A less shallow `only-shallow`

This package is no longer in development
Last updated 10 years ago by sotojuan .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install not-so-shallow 
SYNC missed versions from official npm registry.

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

Current Tags

  • 0.1.4                                ...           latest (10 years ago)

5 Versions

  • 0.1.4 [deprecated]           ...           10 years ago
  • 0.1.3 [deprecated]           ...           10 years ago
  • 0.1.2 [deprecated]           ...           10 years ago
  • 0.1.1 [deprecated]           ...           10 years ago
  • 0.1.0 [deprecated]           ...           10 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (1)
Dev Dependencies (4)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |