artdaq_node_server  v1_00_09
 All Classes Namespaces Files Variables Pages
_lazyClone.js
1 var LazyWrapper = require('./_LazyWrapper'),
2  copyArray = require('./_copyArray');
3 
12 function lazyClone() {
13  var result = new LazyWrapper(this.__wrapped__);
14  result.__actions__ = copyArray(this.__actions__);
15  result.__dir__ = this.__dir__;
16  result.__filtered__ = this.__filtered__;
17  result.__iteratees__ = copyArray(this.__iteratees__);
18  result.__takeCount__ = this.__takeCount__;
19  result.__views__ = copyArray(this.__views__);
20  return result;
21 }
22 
23 module.exports = lazyClone;