mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-25 07:09:59 -07:00
7 lines
290 B
JavaScript
7 lines
290 B
JavaScript
export const localhost = window.location.hostname === "localhost";
|
|
const userAgent = navigator.userAgent.toLowerCase();
|
|
const iphone = userAgent.includes("iphone");
|
|
const ipad = userAgent.includes("ipad");
|
|
export const ios = iphone || ipad;
|
|
export const canShare = "canShare" in navigator;
|