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