doc.yeswiki.pro/node_modules/@algolia/autocomplete-shared/dist/esm/getAttributeValueByPath.js
2023-05-20 19:38:02 +03:00

5 lines
No EOL
154 B
JavaScript

export function getAttributeValueByPath(record, path) {
return path.reduce(function (current, key) {
return current && current[key];
}, record);
}