UNPKG
@joyid/common
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
Shared code for JoyID SDK
github.com/nervina-labs/joyid-sdk-js
nervina-labs/joyid-sdk-js
@joyid/common
/
src
/
utils
/
browser.ts
7 lines
(6 loc)
•
170 B
text/typescript
View Raw
1
2
3
4
5
6
7
export
function
isStandaloneBrowser
(
):
boolean
{
return
(
window
.
matchMedia
(
'(display-mode: standalone)'
).
matches
|| (
window
.
navigator
as
any
).
standalone
) }