are-equal
v1.0.0
Published
Javascript library for comparing equality of any number of given variables of any type by value and without any order or sorting.
Downloads
41
Maintainers
Readme
are-equal
"are-equal" is a very lightweight and fast Javascript library for comparing equality by value of any number of given variables of any type and without any order or sorting.
Features
- Lightweight and fast
- Compare equality by value
- Compare any types
- Sorting isn't required
- Takes multiple arguments
- Returns true if equal, else false
- Available as CommonJS and ES6 Module format
- 0 dependencies
Installation
npm i are-equal
Usage
CommonJS
const areEqual = require("are-equal");
/* returns "true" if equal, "false" if not */
areEqual(item1, item2);
ES6 Module
// Path shown from root directory
import areEqual from "./node_modules/are-equal/are-equal.es6";
/* returns "true" if equal, "false" if not */
areEqual(item1, item2);
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.