geojson-tools
Advanced tools
Comparing version 0.2.1 to 0.2.2
@@ -0,1 +1,6 @@ | ||
0.2.2 / 2016-04-24 | ||
================== | ||
* Fixed an instance where the first set of coordinates in a `LineString` weren't returned on `complexify()`. Ref #9 | ||
0.2.1 / 2015-06-03 | ||
@@ -2,0 +7,0 @@ ================== |
{ | ||
"name": "geojson-tools", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"description": "Tools for working with location data, using the GeoJSON specification", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -408,3 +408,3 @@ /** | ||
d; | ||
cur = linestring.shift(); | ||
cur = linestring[0]; | ||
result.push(cur); | ||
@@ -411,0 +411,0 @@ points.push(cur); |
30829