mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-05-30 09:19:26 -07:00
8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
export const standalone =
|
|
"standalone" in window.navigator && !!window.navigator.standalone;
|
|
|
|
export const touchScreen =
|
|
"ontouchstart" in window ||
|
|
navigator.maxTouchPoints > 0 ||
|
|
(navigator as any).msMaxTouchPoints > 0;
|