UNPKG

jeotiff

Version:
12 lines (9 loc) 256 B
"use strict"; function AbstractDecoder() { } AbstractDecoder.prototype = { isAsync: function() { // TODO: check if async reading func is enabled or not. return (typeof this.decodeBlock === "undefined"); } }; module.exports = AbstractDecoder;