@utilify/core
Version:
Modern, strongly typed, and safe utility function library for JavaScript and TypeScript. Includes type checking, manipulation of arrays, objects, strings, dates, colors, numbers, regular expressions, and more. Compatible with Browser, Node.js, Deno, and B
8 lines • 369 B
TypeScript
/**
* Deeply checks if two values are equal (supports arrays, objects, maps, sets, buffers, etc).
* @param {any} value1 - The first value.
* @param {any} value2 - The second value.
* @returns {boolean} True if the values are deeply equal, false otherwise.
*/
export default function isEqual(value1: any, value2: any): boolean;
//# sourceMappingURL=isEqual.d.ts.map