# 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 @codefeathers/iseq ``` In the browser: ```HTML