From f90f683be50a22b53dfce95c93ff2cc85228554a Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 10 Apr 2014 01:20:23 -0700 Subject: [PATCH] Add doc note to `_.isEqual` about not supporting comparing DOM nodes or functions. [ci skip] --- lodash.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lodash.js b/lodash.js index 755ab6141..09874e95b 100644 --- a/lodash.js +++ b/lodash.js @@ -6198,6 +6198,11 @@ * by the method instead. The callback is bound to `thisArg` and invoked * with two arguments; (value, other). * + * Note: This method supports comparing arrays, booleans, `Date` objects, + * numbers, `Object` objects, regexes, and strings. Functions and DOM nodes + * are **not** supported. A callback may be used to extend support for + * comparing other values. + * * @static * @memberOf _ * @category Objects