Skip to content

Commit

Permalink
0.0.849
Browse files Browse the repository at this point in the history
  • Loading branch information
bahrus committed Nov 10, 2024
1 parent c0bd36a commit bdc5c85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion XV/set.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export async function set(usl, val) {
const { set } = await import('./Storage.js');
const [key] = uspParts;
await set(key, protocol, val);
throw 'NI';
break;
default:
throw 'NI';
}
Expand Down
2 changes: 1 addition & 1 deletion XV/set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export async function set(usl: USL, val: any){
const {set} = await import('./Storage.js');
const [key] = uspParts;
await set(key, protocol, val);
throw 'NI';
break;
default:
throw 'NI';
}
Expand Down

0 comments on commit bdc5c85

Please sign in to comment.