# jquery-base64 **Repository Path**: TsingHua/jquery-base64 ## Basic Information - **Project Name**: jquery-base64 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-10-26 - **Last Updated**: 2023-10-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README **THIS PROJECT IS NO LONGER MAINTAINED. IT MOSTLY WORKS, BUT IF YOU RUN INTO ISSUES, CHECK OUT THE FORKS, PLEASE. OR FIX IT YOURSELF. CHEERS!** * * * # jquery-base64 Rather simple jQuery'fication of [Nick Galbreath's base64 string encoder](http://stringencoders.googlecode.com/svn-history/r210/trunk/javascript/base64.js). I didn't like having a global `base64` variable around, that's all. ## Usage * `$.base64.encode( "this is a test" )` returns `"dGhpcyBpcyBhIHRlc3Q="` * `$.base64.decode( "dGhpcyBpcyBhIHRlc3Q=" )` returns `"this is a test"` ## Known issues JSLint is complaining about the "unexpected use of '<<'/'|'". No idea, suggestions welcome. ## Developers Original code by [Nick Galbreath](http://stringencoders.googlecode.com/svn-history/r210/trunk/javascript/base64.js). Port by [Carlo Zottmann](http://github.com/carlo). ## License MIT license, just like [the original](http://stringencoders.googlecode.com/svn-history/r210/trunk/javascript/base64.js).