mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 04:03:49 +01:00
Update CONTRIBUTING.md
This commit is contained in:
parent
d3e65d67ea
commit
ab9176a018
@ -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 New Issue
Block a user