6989a98d75
- Arkitektur: docs/auth/passwordless-architecture.md - Backend: iom/quixzoom-auth-service/ (FastAPI + Redis) - Webb: quixzoom-market-pages/se/login/ (QR-kod + polling) - App: iom/quixzoom-app/src/features/auth/ (push + deep links) Flöde: QR-kod → app-godkännande → webb-inloggad
7 lines
256 B
JavaScript
7 lines
256 B
JavaScript
import assertString from './util/assertString';
|
|
import { fullWidth } from './isFullWidth';
|
|
import { halfWidth } from './isHalfWidth';
|
|
export default function isVariableWidth(str) {
|
|
assertString(str);
|
|
return fullWidth.test(str) && halfWidth.test(str);
|
|
} |