This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| async function doStuff(){ | |
| try { | |
| const result = await rainSomeCatsAndDogs(); | |
| return result(); | |
| } catch(someCatsAndDogs) { | |
| // do something; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| async function doStuff(){ | |
| try { | |
| return rainSomeCatsAndDogs(); | |
| } catch(someCatsAndDogs) { | |
| // do something; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| funcation someOperation(){ | |
| return Promise.all(getDogs(), getCats()) | |
| .then([dogs, cats] => makeItRain(cats, dogs)) | |
| .then(openAnimalProffUmbrella); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public boolean checkPermissions() | |
| { | |
| // validDate is necessary in order for a permission to be valid. | |
| return prem.validDate == currentDate && | |
| prem.allowedToFetch(id) && | |
| prem.type == PremissionType.Admin; | |
| } |
NewerOlder