mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 00:57:48 +00:00
Remove semicolons.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
* @returns {boolean} Returns `true` if `key` exists, else `false`.
|
||||
*/
|
||||
function baseHasIn(object, key) {
|
||||
return object != null && key in Object(object);
|
||||
return object != null && key in Object(object)
|
||||
}
|
||||
|
||||
export default baseHasIn;
|
||||
export default baseHasIn
|
||||
|
||||
Reference in New Issue
Block a user