base64 to pdf in replace nodejs

const fs = require('fs');

const base64String = '...'; // Your base64 string here const buffer = Buffer.from(base64String, 'base64'); fs.writeFileSync('output.pdf', buffer);