1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-19 13:30:32 +09:00
namae/web/src/util/pwa.ts

9 lines
241 B
TypeScript
Raw Normal View History

2019-09-01 01:28:24 +09:00
interface CustomNavigator extends Navigator {
2019-09-17 14:30:26 +09:00
standalone?: boolean;
2019-09-01 01:28:24 +09:00
}
2019-12-24 01:57:07 +09:00
export function isStandalone(): boolean {
2019-09-17 14:30:26 +09:00
const navigator: CustomNavigator = window.navigator;
2019-12-24 01:57:07 +09:00
return 'standalone' in navigator && navigator.standalone === true;
2019-09-01 01:28:24 +09:00
}