1.0.2 • Published 7 years ago

@branscha/base64 v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

Base 64 Codec Build Status

Goal

Standard 'base64' encoding for RFC 3548 or RFC 4648.

  • No line splitting (in accordance with this standard).
  • https://en.wikipedia.org/wiki/Base64.
  • A JavaScript string is interpreted as a string of bytes, each character corresponds to a single byte.

Example using CommonJS semantics.

var base64 = require('@branscha/base64');
var encoded = base64.encode("Hello World");
var decoded = base64.decode(encoded);

The package contains an UMD module.

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago