1. universal-deep-strict-equal
A port of Node v6's internal _deepEqual function in a universal style
universal-deep-strict-equal
Package: universal-deep-strict-equal
Created by: twada
Last modified: Tue, 28 Jun 2022 04:58:41 GMT
Version: 1.2.2
License: MIT
Downloads: 503,761
Repository: https://github.com/twada/universal-deep-strict-equal

Install

npm install universal-deep-strict-equal
yarn add universal-deep-strict-equal

universal-deep-strict-equal

A port of Node v6's internal _deepEqual function in a universal style.

Build Status
NPM version
License

Sauce Test Status

Issues and improvements should be done in Node.js first.

API

deepEqual(actual, expected, [strict])

USAGE

 var deepEqual = require('universal-deep-strict-equal');

deepEqual({a:1}, {a:'1'}); // => true
deepEqual({a:1}, {a:'1'}, false); // => true
deepEqual({a:1}, {a:'1'}, true); // => false

INSTALL

npm install universal-deep-strict-equal

AUTHOR

CONTRIBUTORS

LICENSE

Licensed under the MIT license.

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin