Skip to content

Commit 003b54c

Browse files
authoredMar 1, 2023
Short-circuit throwing an error on 14.
1 parent 3b7d56f commit 003b54c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎packages/rayo/bridge.mjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const bridgeThrough = (t) => {
88
}
99

1010
for (const [k, v] of Object.entries(b.stacks)) {
11-
t.stacks[k] ||= {};
11+
t.stacks[k] = t.stacks[k] || {};
1212
for (const [kk, vv] of Object.entries(v)) {
1313
t.stacks[k][kk] = v[kk].concat(vv);
1414
}
@@ -55,8 +55,8 @@ export default class Bridge {
5555

5656
route(verb, path, ...handlers) {
5757
const set = (m) => {
58-
this.routes[m] ||= [];
59-
this.stacks[m] ||= {};
58+
this.routes[m] = this.routes[m] || [];
59+
this.stacks[m] = this.stacks[m] || {};
6060
this.routes[m].push(parse(path));
6161
this.stacks[m][path] = (this.stacks[m][path] || []).concat(handlers);
6262
};

0 commit comments

Comments
 (0)
Please sign in to comment.