Warp/node_modules/@algolia/autocomplete-shared/dist/esm/getAttributeValueByPath.js
2024-01-05 19:14:38 +07:00

5 lines
No EOL
154 B
JavaScript

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