Skip to content

Instantly share code, notes, and snippets.

@thebigbad
Forked from jxson/css64.js
Created May 25, 2010 22:34
Show Gist options
  • Save thebigbad/413778 to your computer and use it in GitHub Desktop.
Save thebigbad/413778 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