mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 00:57:48 +00:00
Bump to v4.4.0.
This commit is contained in:
@@ -24,7 +24,7 @@ import keysIn from './keysIn';
|
||||
* // => [1, 2, 3] (iteration order is not guaranteed)
|
||||
*/
|
||||
function valuesIn(object) {
|
||||
return object == null ? baseValues(object, keysIn(object)) : [];
|
||||
return object == null ? [] : baseValues(object, keysIn(object));
|
||||
}
|
||||
|
||||
export default valuesIn;
|
||||
|
||||
Reference in New Issue
Block a user