client-side-csv-generator icon indicating copy to clipboard operation
client-side-csv-generator copied to clipboard

question on if (typeof btoa === 'function')

Open caot opened this issue 6 years ago • 0 comments

    if (typeof btoa === 'function') {
        type += ';base64';
        data = btoa(data);
    } else {

What is the btoa in the above code?

caot avatar Sep 20 '18 20:09 caot