From 916c728d7018a2ad19f9d4217ae5084aa99a2106 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 8 Aug 2014 10:28:18 -0700 Subject: [PATCH] Remove unneeded flag from `baseClone` call in `_.matches`. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 640cc9a93..ee8ecf89f 100644 --- a/lodash.js +++ b/lodash.js @@ -8775,7 +8775,7 @@ var isStrict = isStrictComparable(value); flags[index] = isStrict; - vals[index] = isStrict ? value : baseClone(value, false); + vals[index] = isStrict ? value : baseClone(value); } return function(object) { index = length;