2025-05-28 15:36:51 -07:00

9 lines
205 B
JavaScript

import { getEntityTypeId, getId } from './accessors';
/**
*
* @param background
*/
export function deriveUniqueKey(background) {
return [getId(background), getEntityTypeId(background)].join('-');
}