UNPKG

@bunihq/app-bridge

Version:

BuniHQ App Bridge library

16 lines (14 loc) 292 B
// src/utils/origin.ts function getOrigin() { const ancestors = window.location.ancestorOrigins; if (ancestors?.length) { return ancestors[0]; } if (document.referrer) { return new URL(document.referrer).origin; } return window.location.origin; } export { getOrigin };