2
0
mirror of https://github.com/owncast/owncast.git synced 2024-10-10 19:16:02 +00:00
owncast/web/utils/browserPushNotifications.ts

4 lines
124 B
TypeScript

export default function isPushNotificationSupported() {
return 'serviceWorker' in navigator && 'PushManager' in window;
}