DEV Community

Discussion on: Converting callbacks to promises

Collapse
 
adam_cyclones profile image
Adam Crockett 🌀 • Edited

FYI node ships with a promisified FS library built in from node 10.x+

So no need to do the above.

nodejs.org/dist/latest-v10.x/docs/...

And that would work with async await syntax.