mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 09:47:48 +00:00
Wrap in ternary value within hashHas in parens for clarity.
This commit is contained in:
@@ -1990,7 +1990,7 @@
|
|||||||
*/
|
*/
|
||||||
function hashHas(key) {
|
function hashHas(key) {
|
||||||
var data = this.__data__;
|
var data = this.__data__;
|
||||||
return nativeCreate ? data[key] !== undefined : hasOwnProperty.call(data, key);
|
return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user