4 lines
124 B
TypeScript
4 lines
124 B
TypeScript
|
export default function isPushNotificationSupported() {
|
||
|
return 'serviceWorker' in navigator && 'PushManager' in window;
|
||
|
}
|