Drop the __chain__ check from lodash.

This commit is contained in:
John-David Dalton
2015-07-30 17:25:21 -07:00
parent 5c53809269
commit 7f7ebed4ea

View File

@@ -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);
}
}