Files

8 lines
201 B
JavaScript
Raw Permalink Normal View History

2025-01-04 00:34:03 +01:00
export const getReferenceValue = ({ ref }, options) => {
const referenceRecord = {
...options.endpointParams,
...options.referenceRecord,
};
return referenceRecord[ref];
};