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)

16 lines 311 B
export class JpegHuffman { constructor() { this._children = []; this._index = 0; } get children() { return this._children; } get index() { return this._index; } incrementIndex() { this._index++; } } //# sourceMappingURL=jpeg-huffman.js.map