validate that routes are an array before merging with another Router instance

This commit is contained in:
Flummi 2025-03-17 10:37:28 +01:00
parent c6f87538f6
commit b72ed99fb8
2 changed files with 4 additions and 0 deletions

2
dist/router.js vendored

@ -70,6 +70,8 @@ export default class Router {
}
use(obj) {
if (obj instanceof Router) {
if (!Array.isArray(obj.routes))
throw new TypeError("Routes must be an array.");
this.routes = [...this.routes, ...obj.routes];
this.sortRoutes();
}

@ -95,6 +95,8 @@ export default class Router {
*/
use(obj: Router | Tpl): void {
if(obj instanceof Router) {
if(!Array.isArray(obj.routes))
throw new TypeError("Routes must be an array.");
this.routes = [ ...this.routes, ...obj.routes ];
this.sortRoutes();
}