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 305 B
export class ExifEntry { get tag() { return this._tag; } get value() { return this._value; } set value(v) { this._value = v; } constructor(tag, value) { this._tag = tag; this._value = value; } } //# sourceMappingURL=exif-entry.js.map