Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.4 KB

README.md

File metadata and controls

42 lines (29 loc) · 1.4 KB

Base64

NPM version NPM downloads Build status Test coverage

Base64 encoding and decoding for ArrayBuffer.

Installation

npm install @borderless/base64 --save

Usage

import { encode, encodeUrl, decode } from "@borderless/base64";

expect(encode(new TextEncoder().encode("hello"))).toEqual("aGVsbG8=");
expect(encode(new TextEncoder().encode("你好"))).toEqual("5L2g5aW9");

TypeScript

This project is written using TypeScript and publishes the definitions directly to NPM.

License

MIT

Originally based on base64-arraybuffer, enhanced using TypeScript, ESM and support for Base64URL.