- I am simply trying to convert a
base-64
string to csv
. The file is in CSV
format transmitted in base-64 string
.
- I am implementing this in
Microsoft Office Excel Addins
- Code base-64-string
// getting the base-64 string
let base_64_string = [base-64-string];
// decode the base-64 string
let csvContent = atob(base_64_string);
// convert the decoded base-64 string to csv
var blob = new Blob([csvContent], {type: "data:application/octet-stream;base64"});
Compiled with problems:
WARNING in ./src/taskpane/taskpane.js 310:17-21
export 'Blob' (imported as 'Blob') was not found in 'buffer' (possible exports: Buffer, INSPECT_MAX_BYTES, SlowBuffer, kMaxLength)