mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 00:27:50 +00:00
Remove semicolons.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import baseGet from './baseGet.js';
|
||||
import baseGet from './baseGet.js'
|
||||
|
||||
/**
|
||||
* A specialized version of `baseProperty` which supports deep paths.
|
||||
@@ -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;
|
||||
export default basePropertyDeep
|
||||
|
||||
Reference in New Issue
Block a user