doc.yeswiki.pro/node_modules/@algolia/autocomplete-shared/dist/esm/getAttributeValueByPath.js

5 lines
154 B
JavaScript
Raw Normal View History

2023-05-20 16:37:42 +00:00
export function getAttributeValueByPath(record, path) {
return path.reduce(function (current, key) {
return current && current[key];
}, record);
}