Кодировать строку в Base64 const btoa = str => Buffer.from(str, 'binary').toString('base64'); btoa('foobar'); // 'Zm9vYmFy' Текст и строки JavaScript