mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 17:07:49 +00:00
Bump to v3.10.0.
This commit is contained in:
@@ -11,17 +11,17 @@ import wrapperClone from '../internal/wrapperClone';
|
||||
* @example
|
||||
*
|
||||
* var array = [1, 2];
|
||||
* var wrapper = _(array).map(function(value) {
|
||||
* var wrapped = _(array).map(function(value) {
|
||||
* return Math.pow(value, 2);
|
||||
* });
|
||||
*
|
||||
* var other = [3, 4];
|
||||
* var otherWrapper = wrapper.plant(other);
|
||||
* var otherWrapped = wrapped.plant(other);
|
||||
*
|
||||
* otherWrapper.value();
|
||||
* otherWrapped.value();
|
||||
* // => [9, 16]
|
||||
*
|
||||
* wrapper.value();
|
||||
* wrapped.value();
|
||||
* // => [1, 4]
|
||||
*/
|
||||
function wrapperPlant(value) {
|
||||
|
||||
Reference in New Issue
Block a user