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 () => { | |
const response = await getData(); | |
const result = await someTask(response); | |
const result_2 = await someNextTask(result); | |
const result_3 = await someNextNextTask(result_2); | |
} |