client-side-csv-generator
client-side-csv-generator copied to clipboard
Client side csv generator
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))); }