UNPKG

368 BTypeScriptView Raw
1/**
2 * Checks if two values are equal. Values may be primitives, arrays, or objects.
3 * Returns true if both arguments have the same keys and values.
4 *
5 * @see http://underscorejs.org
6 * @copyright 2009-2013 Jeremy Ashkenas, DocumentCloud Inc.
7 * @license MIT
8 */
9declare function areEqual(a: any, b: any): boolean;
10
11declare namespace areEqual {}
12
13export = areEqual;