``` ~/go/bin/sourcemapper -output ddb -jsurl https://media.dndbeyond.com/character-app/static/js/main.90aa78c5.js ```
9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
import { getEntityTypeId, getId } from './accessors';
|
|
/**
|
|
*
|
|
* @param background
|
|
*/
|
|
export function deriveUniqueKey(background) {
|
|
return [getId(background), getEntityTypeId(background)].join('-');
|
|
}
|