mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 01:47:48 +00:00
Remove semicolons.
This commit is contained in:
@@ -10,11 +10,11 @@
|
||||
function matchesStrictComparable(key, srcValue) {
|
||||
return object => {
|
||||
if (object == null) {
|
||||
return false;
|
||||
return false
|
||||
}
|
||||
return object[key] === srcValue &&
|
||||
(srcValue !== undefined || (key in Object(object)));
|
||||
};
|
||||
(srcValue !== undefined || (key in Object(object)))
|
||||
}
|
||||
}
|
||||
|
||||
export default matchesStrictComparable;
|
||||
export default matchesStrictComparable
|
||||
|
||||
Reference in New Issue
Block a user