Skip to content

Commit

Permalink
add isDeepEqual and isDeepDifferent to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeh committed Nov 10, 2018
1 parent 2d938d7 commit 3c36d7d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ isEq(42, 'number') // true
isNot = isNeq = is.not(42, 'number') // true
// alias is.neq

isDeepEqual([1, 2, 3], [1, 2, 3]) // true
// alias is.deep.eq, is.deep.equal
isDeepDifferent([1, 2, 3], [1, 2, 3]) // false
// alias is.deep.diff, is.deep.different
```

TODO:
Expand Down

0 comments on commit 3c36d7d

Please sign in to comment.