unis_crm/frontend1/node_modules/@rc-component/util/es/isMobile.js

8 lines
158 B
JavaScript
Raw Normal View History

2026-03-26 09:29:55 +00:00
import isMobile from 'is-mobile';
let cached;
export default (() => {
if (typeof cached === 'undefined') {
cached = isMobile();
}
return cached;
});