We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b7d56f commit 003b54cCopy full SHA for 003b54c
packages/rayo/bridge.mjs
@@ -8,7 +8,7 @@ const bridgeThrough = (t) => {
8
}
9
10
for (const [k, v] of Object.entries(b.stacks)) {
11
- t.stacks[k] ||= {};
+ t.stacks[k] = t.stacks[k] || {};
12
for (const [kk, vv] of Object.entries(v)) {
13
t.stacks[k][kk] = v[kk].concat(vv);
14
@@ -55,8 +55,8 @@ export default class Bridge {
55
56
route(verb, path, ...handlers) {
57
const set = (m) => {
58
- this.routes[m] ||= [];
59
- this.stacks[m] ||= {};
+ this.routes[m] = this.routes[m] || [];
+ this.stacks[m] = this.stacks[m] || {};
60
this.routes[m].push(parse(path));
61
this.stacks[m][path] = (this.stacks[m][path] || []).concat(handlers);
62
};
0 commit comments