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
24 lines
499 B
JavaScript
24 lines
499 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = assign;
|
|
|
|
function assign(target, dirtyObject) {
|
|
if (target == null) {
|
|
throw new TypeError('assign requires that input parameter not be null or undefined');
|
|
}
|
|
|
|
dirtyObject = dirtyObject || {};
|
|
|
|
for (var property in dirtyObject) {
|
|
if (dirtyObject.hasOwnProperty(property)) {
|
|
target[property] = dirtyObject[property];
|
|
}
|
|
}
|
|
|
|
return target;
|
|
}
|
|
|
|
module.exports = exports.default; |