client-side-csv-generator
client-side-csv-generator copied to clipboard
question on if (typeof btoa === 'function')
if (typeof btoa === 'function') {
type += ';base64';
data = btoa(data);
} else {
What is the btoa
in the above code?