From 7f7ebed4ea8c94cd6558b93f1766596b035d358d Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 30 Jul 2015 17:25:21 -0700 Subject: [PATCH] Drop the `__chain__` check from `lodash`. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 7f5618fdf..e97e21af2 100644 --- a/lodash.js +++ b/lodash.js @@ -917,7 +917,7 @@ if (value instanceof LodashWrapper) { return value; } - if (hasOwnProperty.call(value, '__chain__') && hasOwnProperty.call(value, '__wrapped__')) { + if (hasOwnProperty.call(value, '__wrapped__')) { return wrapperClone(value); } }