(obj)
| 46 | |
| 47 | // Create a safe reference to the Underscore object for use below. |
| 48 | var _ = function(obj) { |
| 49 | if (obj instanceof _) return obj; |
| 50 | if (!(this instanceof _)) return new _(obj); |
| 51 | this._wrapped = obj; |
| 52 | }; |
| 53 | |
| 54 | // Export the Underscore object for **Node.js**, with |
| 55 | // backwards-compatibility for the old `require()` API. If we're in |
no outgoing calls
no test coverage detected