UNPKG
jeotiff
Version:
latest (0.4.2)
0.4.2
0.4.1
GeoTIFF image decoding in JavaScript
github.com/constantinius/geotiff.js
constantinius/geotiff.js
jeotiff
/
src
/
abstractdecoder.js
12 lines
(9 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"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
;