mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
module.exports = function isPopupOrNotification() {
|
|
const url = window.location.href
|
|
if (url.match(/popup.html$/)) {
|
|
return 'popup'
|
|
} else {
|
|
return 'notification'
|
|
}
|
|
}
|