chore: prettier source code
This commit is contained in:
+1
-1
@@ -27,7 +27,7 @@ export function get(object: any, path: string): any {
|
||||
const keys = path.split('.');
|
||||
let result = object;
|
||||
|
||||
keys.forEach(key => {
|
||||
keys.forEach((key) => {
|
||||
result = isDef(result[key]) ? result[key] : '';
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user