_.values, when chaining, changes the type of the chain from an object wrapper to an array wrapper.

This commit is contained in:
Sean Kelley
2015-11-11 12:15:48 -08:00
parent 708609e076
commit 8b647ec50d
+2 -2
View File
@@ -10740,7 +10740,7 @@ declare module _ {
/**
* @see _.values
**/
values<TResult>(): LoDashImplicitObjectWrapper<TResult[]>;
values<TResult>(): LoDashImplicitArrayWrapper<TResult>;
}
//_.valuesIn
@@ -10757,7 +10757,7 @@ declare module _ {
/**
* @see _.valuesIn
**/
valuesIn<TResult>(): LoDashImplicitObjectWrapper<TResult[]>;
valuesIn<TResult>(): LoDashImplicitArrayWrapper<TResult>;
}
/**********