Skip to content

Instantly share code, notes, and snippets.

@gusanthiago
Last active April 12, 2017 01:21
Show Gist options
  • Save gusanthiago/93daf632ddd6636c9e18879846f557e3 to your computer and use it in GitHub Desktop.
Save gusanthiago/93daf632ddd6636c9e18879846f557e3 to your computer and use it in GitHub Desktop.
/**
* b64
* @description - converte texto ou objeto para base64
*
* @param {Object[]} - objeto DOM de entrada
*
* @return base64 do grafico
*/
var b64 = function(obj){
var str = obj.html();
return btoa(unescape(encodeURIComponent(str)));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment