mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
Bump to v4.4.0.
This commit is contained in:
@@ -24,7 +24,7 @@ var baseValues = require('./_baseValues'),
|
||||
* // => [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));
|
||||
}
|
||||
|
||||
module.exports = valuesIn;
|
||||
|
||||
Reference in New Issue
Block a user