Update CONTRIBUTING.md
This commit is contained in:
parent
6e284c44d6
commit
467a21f028
|
@ -161,4 +161,9 @@ const user = await Users.findOne(userId).then(esure);
|
||||||
const user = await Users.findOne(userId).then(esure);
|
const user = await Users.findOne(userId).then(esure);
|
||||||
// 万が一 Users.findOne の結果が undefined だったら、ensure でエラーが発生するので
|
// 万が一 Users.findOne の結果が undefined だったら、ensure でエラーが発生するので
|
||||||
// この行に到達することは無い
|
// この行に到達することは無い
|
||||||
|
// なので、.then(ensure) は
|
||||||
|
// if (user == null) {
|
||||||
|
// throw 'missing user';
|
||||||
|
// }
|
||||||
|
// の糖衣構文のような扱いです
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue