mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
6 lines
193 B
TypeScript
6 lines
193 B
TypeScript
export const EXTERNAL_SOURCE_TAG = Symbol("externalSource");
|
|
|
|
export const isExternalMessage = (message: Record<PropertyKey, unknown>) => {
|
|
return message?.[EXTERNAL_SOURCE_TAG] === true;
|
|
};
|