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

Client side csv generator

Results 3 client-side-csv-generator issues
Sort by recently updated
recently updated
newest added

if (typeof btoa === 'function') { type += ';base64'; data = btoa(data); } else { What is the `btoa` in the above code?

Could you please consider [this advice](http://stackoverflow.com/a/27699027/1221082) in order to implementation of IE11 support for this library?

Хорошо бы добавить (может кому нибудь как мне понадобиться) this.utf8_to_b64 = function (str) { return window.btoa(unescape(encodeURIComponent(str))); }