Files
oneclickvirt.github.io/node_modules/@algolia/autocomplete-shared/dist/esm/getAttributeValueByPath.js
spiritlhl 6f5966067d Update
2023-06-20 00:59:07 +00:00

5 lines
154 B
JavaScript

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