Skip to content

Instantly share code, notes, and snippets.

@s-melnikov
Created October 12, 2015 05:31
Show Gist options
  • Save s-melnikov/7448ce3d3ceb3e08a5da to your computer and use it in GitHub Desktop.
Save s-melnikov/7448ce3d3ceb3e08a5da to your computer and use it in GitHub Desktop.
var params = { test: "Hello World!" };
var base64str = btoa(JSON.stringify(params)); // "eyJ0ZXN0IjoiSGVsbG8gV29ybGQhIn0="
JSON.parse(atob(base64str)).test // "Hello World!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment