File size: 166 Bytes
1e92f2d
 
 
 
 
 
1
2
3
4
5
6
7
export function getDomain( product: {
	meta: string;
	extra?: { domain_to_bundle?: string };
} ): string {
	return product.extra?.domain_to_bundle ?? product.meta;
}