mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
Update CONTRIBUTING.md
This commit is contained in:
parent
d3e65d67ea
commit
ab9176a018
1 changed files with 5 additions and 0 deletions
|
@ -161,4 +161,9 @@ const user = await Users.findOne(userId).then(esure);
|
|||
const user = await Users.findOne(userId).then(esure);
|
||||
// 万が一 Users.findOne の結果が undefined だったら、ensure でエラーが発生するので
|
||||
// この行に到達することは無い
|
||||
// なので、.then(ensure) は
|
||||
// if (user == null) {
|
||||
// throw 'missing user';
|
||||
// }
|
||||
// の糖衣構文のような扱いです
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue