equal
Deep comparison between two values to determine if they are equivalent
Table of Contents
β¨ Features
- β‘ Multi runtime support (
Deno,Node.jsand Browsers) - π Pure TypeScript and provides type definition
- :white_check_mark: Rambdaβs all test case is passed
- :earth_americas: Universal module, providing
ES modulesandUMD - :package: Optimized, super slim size
- π TSDoc-style comments
Package name
Deno: equal (deno.land, nest.land)
Node.js: lauqe (npm)
π API
Type definition
declare const equal: <T, U extends T>(a: T, b: U) => boolean| Parameter | Description |
|---|---|
a |
Any value |
b |
Any value |
=> Return true if the reference memory is the same or the property members and their values are the same
Definition of Equality
Equality is defined as the data structure and property values are equivalent.
Same-value-zero
Numerical equivalence is based on Same-value-zero.
That is, all of the following comparisons are considered equivalent.
equal(NaN, NaN) // true
equal(0, 0) // true
equal(+0, 0) // true
equal(-0, 0) // true
equal(+0, -0) // trueπ Supports
The TypeScript version must be 4.1.0 or higher.
This project provide ES modules and UMD. The range supported by both is different.
ES modules
Limit support to the latest environment to reduce the bundle size.
Deno |
Node.js |
![]() Edge |
![]() Firefox |
![]() Chrome |
![]() Safari |
![]() iOS Safari |
![]() Samsung |
![]() Opera |
|---|---|---|---|---|---|---|---|---|
| ^1.6.0 | ^14.16.0 | last 2 versions | last 2 versions | last 2 versions | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
UMD
Browser is supporting since IE11.
Node.js |
![]() IE / Edge |
![]() Firefox |
![]() Chrome |
![]() Safari |
![]() iOS Safari |
![]() Samsung |
![]() Opera |
|---|---|---|---|---|---|---|---|
| ^6.17.0 | IE11 / ^16 | ^60 | ^61 | ^10.1 | ^10.3 | ^8.2 | ^48 |
Compared to ES modules, UMD has a bundle size increase of about 2.5x. Recommend using ES modules as much as possible.
π« Usage
equal provides multi platform modules.
π¦ Deno
deno.land
import { equal } from "https://deno.land/x/equal/mod.ts";
equal([1, 2, 3], [1, 2, 3]); // truenest.land
import { equal } from "https://x.nest.land/equal/mod.ts";
equal([1, ['hello', ['world']], [1, ['hello', ['world']]); // true:package: Node.js
NPM package name is
lauqe.
Install
npm i lauqe
or
yarn add lauqeES modules
import { equal } from "lauqe";
equal(new Date('2000/1/1'), new Date('2000/1/1')); // trueUMD
const { equal } = require("lauqe");
equal(/hello/g, /hello/g); // true:globe_with_meridians: Browser
ES modules
<script type="module">
import { equal } from "https://unpkg.com/lauqe?module";
console.log(equal(() => {}, () => {}); // true
</script>UMD
The global object is
E.
<script src="https://unpkg.com/lauqe"></script>
<script>
console.log(E.equal(NaN, NaN)); // true
</script>:handshake: Contributing
Contributions, issues and feature requests are welcome!
Feel free to check issues.
π± Show your support
Give a βοΈ if this project helped you!
π‘ License
Copyright Β© 2021-present TomokiMiyauci.
Released under the MIT license






