How do you get a Node.js Buffer from a Blob returned by the Node.js 18 Fetch API implementation?
I know I can get binary data in the form of a Blob using the Fetch API
const blob = await fetch("https://example.com/image.png")
.then(r => r.blob())
but most libraries expect a Buffer. How do I get a buffer from fetch / convert a blob to a buffer?