Skip to main content

logo image

equal

Deep comparison between two values to determine if they are equivalent

test GitHub release deno land nest badge deno doc deno version node support version bundle size npm download dependencies Status codecov Codacy Badge npm type definitions Commitizen friendly Gitmoji semantic-release License: MIT


Table of Contents

✨ Features

  • ⚑ Multi runtime support (Deno, Node.js and Browsers)
  • πŸ“š Pure TypeScript and provides type definition
  • :white_check_mark: Rambda’s all test case is passed
  • :earth_americas: Universal module, providing ES modules and UMD
  • :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
Deno
Node.js
Node.js
IE / Edge
Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
iOS Safari
iOS Safari
Samsung
Samsung
Opera
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
Node.js
IE / Edge
IE / Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
iOS Safari
iOS Safari
Samsung
Samsung
Opera
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]); // true

nest.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 lauqe

ES modules

import { equal } from "lauqe";

equal(new Date('2000/1/1'), new Date('2000/1/1')); // true

UMD

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