Files
est-frame/node_modules/@algolia/autocomplete-shared/dist/esm/getAttributeValueByPath.js
2025-10-22 05:38:27 +00:00

5 lines
154 B
JavaScript
Executable File

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