mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +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'
|
||
|
}
|
||
|
}
|