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)

10 lines 261 B
export class HuffmanCode { constructor(bits = 0, value = 0) { this.bits = bits; this.value = value; } static from(other) { return new HuffmanCode(other.bits, other.value); } } //# sourceMappingURL=webp-huffman-code.js.map