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