Warp/node_modules/@algolia/autocomplete-shared/dist/esm/getAttributeValueByPath.js

5 lines
154 B
JavaScript
Raw Permalink Normal View History

2024-01-05 12:14:38 +00:00
export function getAttributeValueByPath(record, path) {
return path.reduce(function (current, key) {
return current && current[key];
}, record);
}