tannerjt/AGStoShapefile

Incorrect code for the final chunk in a JSON

kramertamas opened this issue · 1 comments

The line
ids = objectIds.slice(i * 100, objectIds[objectIds.length-1]);
should be corrected to
ids = objectIds.slice(i * 100, objectIds.length);

Thanks for this catch! I've made the change in the latest commit.