Skip to content

danny-toi/base64

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Base64 encoding and decoding

The library to create a base-64 encoded string and decode a string of data which has been encoded using base-64 encoding.

Licensed under the MIT license.

Examples

var string = 'This is a plain text.',
    encoded = Base64.encode(string),
    decoded = Base64.decode(encoded);
console.log(encoded == 'VGhpcyBpcyBhIHBsYWluIHRleHQu');
console.log(decoded == string);

About

Base64 encoding and decoding

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published