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 286 B
import { HuffmanNode } from './huffman-node.js'; export class HuffmanParent extends HuffmanNode { get children() { return this._children; } constructor(children) { super(); this._children = children; } } //# sourceMappingURL=huffman-parent.js.map