Bump to v4.0.0.

This commit is contained in:
John-David Dalton
2015-09-17 17:52:09 -07:00
parent 1d77dfa4b7
commit 54e7baecc3
675 changed files with 11257 additions and 8085 deletions

View File

@@ -1,5 +1,5 @@
import LazyWrapper from './LazyWrapper';
import arrayCopy from './arrayCopy';
import copyArray from './copyArray';
/**
* Creates a clone of the lazy wrapper object.
@@ -11,12 +11,12 @@ import arrayCopy from './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;
}