Closed iofirag closed 1 year ago
i'm get the error 'offset' is not defined because i use strict mode. so the fix for this kind of issue is to change
in dbf/src/structure.js
(line number 58) from:
offset = fieldDescLength + 32;
to:
var offset = fieldDescLength + 32;
This has now been fixed in https://github.com/mapbox/dbf/pull/24
Thanks!
i'm get the error 'offset' is not defined because i use strict mode. so the fix for this kind of issue is to change
in dbf/src/structure.js
(line number 58) from:
offset = fieldDescLength + 32;
to:
var offset = fieldDescLength + 32;