mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 10:17:48 +00:00
Bump to v4.0.0.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user