UNPKG
@eolme/vma-engine
Version:
latest (5.1.0)
5.1.0
5.0.1
5.0.0
4.0.0
3.0.0
2.0.0
1.5.3
1.5.2
1.5.1
1.5.0
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
Engine for VK Mini Apps
github.com/eolme/vma-engine
eolme/vma-engine
@eolme/vma-engine
/
dist
/
modules
/
platform.js
5 lines
(4 loc)
•
229 B
JavaScript
View Raw
1
2
3
4
5
const
vendor =
String
(
window
.
navigator
?.
vendor
);
const
ua =
String
(
window
.
navigator
?.
userAgent
);
export
const
isSafari = (vendor.
includes
(
'Apple'
) ||
'webkit'
in
window
) && !ua.
includes
(
'CriOS'
) && !ua.
includes
(
'FxiOS'
);