7 lines
139 B
TypeScript
7 lines
139 B
TypeScript
export function isIOS() {
|
|
if (/iPad|iPhone|iPod/.test(navigator.userAgent)) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|