3 lines
111 B
TypeScript
3 lines
111 B
TypeScript
export default function isMobileUI() {
|
|
return new URL(location.href).searchParams.get('mobile') == 'true'
|
|
} |