I've been using underscore as a collection of statics.
What is the underscore function for:
var _ = function(obj) {
if (obj instanceof _) return obj;
if (!(this instanceof _)) return new _(obj);
this._wrapped = obj;
};
What is an example of how you would use this?