@pagopa/mui-italia
Version:
[Material-UI](https://mui.com/core/) theme inspired by [Bootstrap Italia](https://italia.github.io/bootstrap-italia/).
9 lines (8 loc) • 337 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isMobileDevice = void 0;
function isMobileDevice() {
return (typeof navigator !== 'undefined' &&
!!(navigator.userAgent.match(/(iPod|iPhone|iPad)/g) && navigator.userAgent.match(/AppleWebKit/g)));
}
exports.isMobileDevice = isMobileDevice;