/huffman-deno

Super simple implementation of the Huffman algorithm in TyoeScript

Primary LanguageTypeScript

huffman-deno

Super simple implementation of the Huffman algorithm in TypeScript.

Requirements

Deno 1.25+

Example

import { Huffman } from 'https://denopkg.com/talentlessguy/huffman/index.ts'

const h = new Huffman()

const encoded = h.encode('Hello World')

const decoded = h.decode(encoded)