(obj)
| 15718 | |
| 15719 | // Create a safe reference to the Underscore object for use below. |
| 15720 | var _ = function(obj) { |
| 15721 | if (obj instanceof _) return obj; |
| 15722 | if (!(this instanceof _)) return new _(obj); |
| 15723 | this._wrapped = obj; |
| 15724 | }; |
| 15725 | |
| 15726 | // Export the Underscore object for **Node.js**, with |
| 15727 | // backwards-compatibility for the old `require()` API. If we're in |
no outgoing calls
no test coverage detected