Skip to content

Instantly share code, notes, and snippets.

@zheeeng
Created June 20, 2019 03:53
Show Gist options
  • Save zheeeng/fd26f9d34c88144ecce291a804f8e41f to your computer and use it in GitHub Desktop.
Save zheeeng/fd26f9d34c88144ecce291a804f8e41f to your computer and use it in GitHub Desktop.
function utoa(str) {
return window.btoa(unescape(encodeURIComponent(str)))
}
function atou(str) {
return decodeURIComponent(escape(window.atob(str)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment