Hi, I have an encrypted fix in base64 and when I decrypt it, it does it with characters that I would like to delete:
const b64_to_utf8 = (str) => {
return new Buffer(str, 'base64').toString('ascii')
}
Deciphered looks like this:
Is it possible to remove the characters?
try a .split('\n');
but it did not work.