From 5f085ccb52b9fcc00798f125f9d25c7037792779 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 10 Sep 2012 23:04:42 -0700 Subject: [PATCH] Fix typo in `_.isEqual`. Former-commit-id: 9d5065953c51d12f1308dd8c0c142b6505efe765 --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 5e43d2191..a1be79e01 100644 --- a/lodash.js +++ b/lodash.js @@ -1520,7 +1520,7 @@ while (length--) { if (stackA[length] == a) { - return stackA[length] == b; + return stackB[length] == b; } }