Skip to main content
Module

x/ramda/mod.ts>identical

:ram: Practical functional Javascript
Latest
variable identical
import { identical } from "https://deno.land/x/ramda@v0.27.2/mod.ts";

Returns true if its arguments are identical, false otherwise. Values are identical if they reference the same memory. NaN is identical to NaN; 0 and -0 are not identical.

Note this is merely a curried version of ES6 Object.is.