mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 01:57:50 +00:00
Avoid != in createCallback.
This commit is contained in:
@@ -7796,7 +7796,7 @@
|
|||||||
func || baseCreateCallback(func, thisArg, argCount);
|
func || baseCreateCallback(func, thisArg, argCount);
|
||||||
}
|
}
|
||||||
// handle "_.pluck" and "_.where" style callback shorthands
|
// handle "_.pluck" and "_.where" style callback shorthands
|
||||||
return type != 'object' ? property(func) : matches(func);
|
return type == 'object' ? matches(func) : property(func);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user