1
0
mirror of https://github.com/uetchy/namae.git synced 2025-07-03 14:50:03 +09:00
namae/src/util/pwa.ts

9 lines
238 B
TypeScript
Raw Normal View History

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