mirror of
https://github.com/uetchy/namae.git
synced 2025-03-19 13:30:32 +09:00
9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
|
interface CustomNavigator extends Navigator {
|
||
|
standalone?: boolean
|
||
|
}
|
||
|
|
||
|
export function isStandalone() {
|
||
|
const navigator: CustomNavigator = window.navigator
|
||
|
return 'standalone' in navigator && navigator.standalone
|
||
|
}
|