diff --git a/lodash.js b/lodash.js index d9b2c0b96..3b7efd5f1 100644 --- a/lodash.js +++ b/lodash.js @@ -3883,7 +3883,9 @@ * // => 'pebbles is 1' */ function chain(value) { - return new lodashWrapper(value, true); + var result = lodash(value); + result.__chain__ = true; + return result; } /**