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

Function isAndroidTablet

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

Source from the content-addressed store, hash-verified

68const isAndroid = (win: Window) => testUserAgent(win, /android|sink/i);
69
70const isAndroidTablet = (win: Window) => {
71 return isAndroid(win) && !testUserAgent(win, /mobile/i);
72};
73
74const isPhablet = (win: Window) => {
75 const width = win.innerWidth;

Callers 1

isTabletFunction · 0.85

Calls 2

isAndroidFunction · 0.85
testUserAgentFunction · 0.85

Tested by

no test coverage detected