mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 17:07:49 +00:00
Consistent use (always) of parentheses in arrow functions.
This commit is contained in:
@@ -8,7 +8,7 @@ import baseGet from './baseGet.js'
|
||||
* @returns {Function} Returns the new accessor function.
|
||||
*/
|
||||
function basePropertyDeep(path) {
|
||||
return object => baseGet(object, path)
|
||||
return (object) => baseGet(object, path)
|
||||
}
|
||||
|
||||
export default basePropertyDeep
|
||||
|
||||
Reference in New Issue
Block a user