Skip to content

Instantly share code, notes, and snippets.

@jxson
Created May 13, 2010 19:29
Show Gist options
  • Save jxson/400315 to your computer and use it in GitHub Desktop.
Save jxson/400315 to your computer and use it in GitHub Desktop.
var css64Encode = function (string) {
return $.base64Encode(string).
replace(/\//g, '--_').
replace(/\+/g, '-_').
replace(/\=/g, '_');
};
var css64Decode = function (string) {
return $.base64Decode(string.
replace(/--_/g, '/').
replace(/-_/g, '+').
replace(/_/g, '='));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment