Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/litichevskiydv/equality-comparison
Implementation of configurable equality comparer
https://github.com/litichevskiydv/equality-comparison
Last synced: 8 days ago
JSON representation
Implementation of configurable equality comparer
- Host: GitHub
- URL: https://github.com/litichevskiydv/equality-comparison
- Owner: litichevskiydv
- License: mit
- Created: 2019-01-07T15:23:57.000Z (about 6 years ago)
- Default Branch: develop
- Last Pushed: 2023-01-19T04:04:00.000Z (almost 2 years ago)
- Last Synced: 2024-12-16T21:57:11.780Z (22 days ago)
- Language: JavaScript
- Size: 381 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# equality-comparison
[![npm version](https://badge.fury.io/js/equality-comparison.svg)](https://www.npmjs.com/package/equality-comparison)
[![npm downloads](https://img.shields.io/npm/dt/equality-comparison.svg)](https://www.npmjs.com/package/equality-comparison)
[![dependencies status](https://img.shields.io/librariesio/github/litichevskiydv/equality-comparison)](https://www.npmjs.com/package/equality-comparison)
[![Build Status](https://github.com/litichevskiydv/equality-comparison/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/litichevskiydv/equality-comparison/actions/workflows/ci.yaml)
[![Coverage Status](https://coveralls.io/repos/github/litichevskiydv/equality-comparison/badge.svg?branch=master)](https://coveralls.io/github/litichevskiydv/equality-comparison?branch=master)Implementation of configurable equality comparer
## Functions
-
equals(first, second, options) :boolean
-
Method checks two objects equality.
-
getHashCode(operand, options) :number
-
Method calculates object hashcode.
## Objects
- DefaultEqualityComparer
-
Default implementation of EqualityComparer based on functions equals and getHashCode.