79745365

Date: 2025-08-25 05:15:41
Score: 0.5
Natty:
Report link
const res = await fetch("https://example.com/file.mp3", {
  headers: {},
  method: "GET",
});

const arrayBuffer = await res.arrayBuffer();

fs.writeFileSync("filename.mp3", Buffer.from(arrayBuffer));

tested with node.js v24.6.0

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: LKB