Bump to v3.3.0.

This commit is contained in:
John-David Dalton
2015-12-16 17:46:57 -08:00
parent 3ccb5e7da3
commit f8e4370129
91 changed files with 826 additions and 401 deletions

View File

@@ -1,4 +1,4 @@
define([], function() {
define(['./baseCreate', './baseLodash'], function(baseCreate, baseLodash) {
/**
* The base constructor for creating `lodash` wrapper objects.
@@ -14,5 +14,8 @@ define([], function() {
this.__chain__ = !!chainAll;
}
LodashWrapper.prototype = baseCreate(baseLodash.prototype);
LodashWrapper.prototype.constructor = LodashWrapper;
return LodashWrapper;
});