Skip to content

Commit

Permalink
style: order database attributes with an alphabet
Browse files Browse the repository at this point in the history
  • Loading branch information
zimeg committed Aug 27, 2024
1 parent b8a941d commit c06137f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/content/basic/authenticating-oauth.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,12 +412,12 @@ For quick testing purposes, the following might be interesting:
```javascript
const database = {
store: {},
async get(key) {
return this.store[key];
},
async delete(key) {
delete this.store[key];
},
async get(key) {
return this.store[key];
},
async set(key, value) {
this.store[key] = value;
},
Expand Down

0 comments on commit c06137f

Please sign in to comment.