MCPcopy Index your code
hub / github.com/ionic-team/ionic-framework / isIOS

Function isIOS

core/src/utils/platform.ts:66–66  ·  view source on GitHub ↗
(win: Window)

Source from the content-addressed store, hash-verified

64const isIphone = (win: Window) => testUserAgent(win, /iPhone/i);
65
66const isIOS = (win: Window) => testUserAgent(win, /iPhone|iPod/i) || isIpad(win);
67
68const isAndroid = (win: Window) => testUserAgent(win, /android|sink/i);
69

Callers

nothing calls this directly

Calls 2

testUserAgentFunction · 0.85
isIpadFunction · 0.85

Tested by

no test coverage detected