Bump to v4.0.0.

This commit is contained in:
John-David Dalton
2015-12-16 17:53:20 -08:00
parent 94d714007e
commit 8c26e6fd4c
656 changed files with 16423 additions and 11602 deletions

View File

@@ -1,4 +1,4 @@
define(['./LazyWrapper', './arrayCopy'], function(LazyWrapper, arrayCopy) {
define(['./LazyWrapper', './copyArray'], function(LazyWrapper, copyArray) {
/**
* Creates a clone of the lazy wrapper object.
@@ -10,12 +10,12 @@ define(['./LazyWrapper', './arrayCopy'], function(LazyWrapper, arrayCopy) {
*/
function lazyClone() {
var result = new LazyWrapper(this.__wrapped__);
result.__actions__ = arrayCopy(this.__actions__);
result.__actions__ = copyArray(this.__actions__);
result.__dir__ = this.__dir__;
result.__filtered__ = this.__filtered__;
result.__iteratees__ = arrayCopy(this.__iteratees__);
result.__iteratees__ = copyArray(this.__iteratees__);
result.__takeCount__ = this.__takeCount__;
result.__views__ = arrayCopy(this.__views__);
result.__views__ = copyArray(this.__views__);
return result;
}