Comment on Async/await support in FirefoxparentComments−kinkdr9yIt is in essence: read((err, txt) => { console.log(txt) }) Or read().then((txt) => console.log(txt)) Why is it bad?
Comments
It is in essence:
Or Why is it bad?