mirror of
https://github.com/owncast/owncast.git
synced 2025-11-04 21:37:31 +08:00
4 lines
124 B
TypeScript
4 lines
124 B
TypeScript
export default function isPushNotificationSupported() {
|
|
return 'serviceWorker' in navigator && 'PushManager' in window;
|
|
}
|