Update CONTRIBUTING.md

This commit is contained in:
syuilo 2019-04-13 14:36:35 +09:00
parent 6e284c44d6
commit 467a21f028
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -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';
// }
// の糖衣構文のような扱いです
```