From 24035caadb9cce57897ce097d7d2d3e24c6c1ccc Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 24 Jul 2012 02:13:07 -0700 Subject: [PATCH] Keep objects in the `stack` array of `_.isEqual` in case a cyclical object is used in a sibling property. Former-commit-id: 33ffcec837322f4d479f64f9ec6b14184bf5f7a2 --- lodash.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lodash.js b/lodash.js index 28cedea08..ba64214b3 100644 --- a/lodash.js +++ b/lodash.js @@ -3038,8 +3038,6 @@ } } } - // remove the first collection from the stack of traversed objects - stack.pop(); return result; }