(obj)
| 6745 | |
| 6746 | // Helper function to continue chaining intermediate results. |
| 6747 | var result = function(obj) { |
| 6748 | return this._chain ? _(obj).chain() : obj; |
| 6749 | }; |
| 6750 | |
| 6751 | // Add all of the Underscore functions to the wrapper object. |
| 6752 | _.mixin(_); |