79345822

Date: 2025-01-10 13:18:51
Score: 1
Natty:
Report link

The solution I found was create an txt file that contains the ascii art, and use the fs module, like this

const fs = require('fs');

fs.readFile('./ascii.txt', 'utf8', (err, data) => {
  if (err) {
    console.error('Error reading the file:', err);
    return;
  }
  console.log(data);
});

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Adrian Netto