mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
Make nullish check consistent in variations of _.matches returned function.
This commit is contained in:
2
dist/lodash.underscore.js
vendored
2
dist/lodash.underscore.js
vendored
@@ -5053,7 +5053,7 @@
|
||||
|
||||
return function(object) {
|
||||
var length = propsLength;
|
||||
if (length && !object) {
|
||||
if (length && object == null) {
|
||||
return false;
|
||||
}
|
||||
while (length--) {
|
||||
|
||||
Reference in New Issue
Block a user