Skip to main content
Deno 2 is finally here 🎉️
Learn more

Base64 on Deno

Use on Deno

Base64 implementation written in TypeScript. UTF-8 coding is available.

Usage

import Base64 from 'https://denopkg.com/kota-yata/ky_base64/index.ts';

const encoded = Base64.encode('abcdef');
const decoded = Base64.decode(encoded);