From 3ceefc1e29d20af020f4c7c9c2d297e4a972c9f5 Mon Sep 17 00:00:00 2001 From: Muthu Kumar Date: Tue, 27 Feb 2018 09:47:06 +0530 Subject: [PATCH] Added minified version, README --- README.md | 81 ++++++++++++++++++++++++++++++++++++++++++++++++ dist/isEq.min.js | 10 ++++++ index.js | 94 -------------------------------------------------------- isEq.js | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 4 +-- 5 files changed, 187 insertions(+), 96 deletions(-) create mode 100644 README.md create mode 100644 dist/isEq.min.js delete mode 100644 index.js create mode 100644 isEq.js diff --git a/README.md b/README.md new file mode 100644 index 0000000..5ab3568 --- /dev/null +++ b/README.md @@ -0,0 +1,81 @@ +# isEq + +### Deep-compare objects + +`isEq` is a very tiny module that deep compares objects or arrays. + +Although the intention is deep comparison, `isEq` can compare several datatypes. + +## Supports + +| Datatype | Support | +|--------------------- |--- | +| Number | ✅ | +| String | ✅ | +| Boolean | ✅ | +| Regexp | ✅ | +| Object | ✅ | +| Array | ✅ | +| Cyclic Object/Array | ❌ | +| Function | ❌ | +| Symbol | ❌ | +| Blob | ❌ | + +## Installation + +Node: + +```Shell +npm install --save iseq +``` + +In the browser: +```HTML +