UNPKG

image-in-browser

Version:

Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)

11 lines 269 B
import { HuffmanNode } from './huffman-node.js'; export class HuffmanValue extends HuffmanNode { get value() { return this._value; } constructor(value) { super(); this._value = value; } } //# sourceMappingURL=huffman-value.js.map