(obj)
| 5607 | |
| 5608 | // Create a safe reference to the Underscore object for use below. |
| 5609 | var _ = function(obj) { |
| 5610 | if (obj instanceof _) return obj; |
| 5611 | if (!(this instanceof _)) return new _(obj); |
| 5612 | this._wrapped = obj; |
| 5613 | }; |
| 5614 | |
| 5615 | // Export the Underscore object for **Node.js**, with |
| 5616 | // backwards-compatibility for the old `require()` API. If we're in |