5 lines
154 B
JavaScript
Executable File
5 lines
154 B
JavaScript
Executable File
export function getAttributeValueByPath(record, path) {
|
|
return path.reduce(function (current, key) {
|
|
return current && current[key];
|
|
}, record);
|
|
} |