Files
dndbeyond_src/ddb_main/packages/rules-engine/es/engine/Background/derivers.js
T
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('-');
}