mirror of
https://github.com/owncast/owncast.git
synced 2024-12-19 15:56:47 +03:00
3 lines
124 B
TypeScript
3 lines
124 B
TypeScript
export default function isPushNotificationSupported() {
|
|
return 'serviceWorker' in navigator && 'PushManager' in window;
|
|
}
|