mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 17:37:50 +00:00
Bump to v4.4.0.
This commit is contained in:
@@ -23,7 +23,7 @@ define(['./_baseValues', './keysIn'], function(baseValues, 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));
|
||||
}
|
||||
|
||||
return valuesIn;
|
||||
|
||||
Reference in New Issue
Block a user