Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.

This commit is contained in:
becarta
2025-05-23 12:43:00 +02:00
parent f40db0f5c9
commit a544759a3b
11127 changed files with 1647032 additions and 0 deletions

33
node_modules/axobject-query/lib/util/iteratorProxy.js generated vendored Normal file
View File

@@ -0,0 +1,33 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
// eslint-disable-next-line no-unused-vars
function iteratorProxy() {
var values = this;
var index = 0;
var iter = {
'@@iterator': function iterator() {
return iter;
},
next: function next() {
if (index < values.length) {
var value = values[index];
index = index + 1;
return {
done: false,
value: value
};
} else {
return {
done: true
};
}
}
};
return iter;
}
var _default = iteratorProxy;
exports.default = _default;