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)

12 lines 223 B
export class HeapNode { constructor() { this._buf = [undefined]; } get buf() { return this._buf; } get n() { return this._buf.length; } } //# sourceMappingURL=heap-node.js.map