Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New module @turf/boolean-equal #869

Merged
merged 9 commits into from
Aug 2, 2017
Merged
Prev Previous commit
Next Next commit
Add failing tests
From @rowanwins's comment #869 (comment)
  • Loading branch information
DenisCarriere committed Jul 27, 2017
commit c2be3b719d8bf7ef908c94a6ff3cfb18edb3dd8e
40 changes: 40 additions & 0 deletions packages/turf-boolean-equal/test/true/lines2.geojson
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "LineString",
"coordinates": [
[
0,
0
],
[
2,
2
]
]
}
},
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "LineString",
"coordinates": [
[
0,0
],
[
1,1
],
[
2,2
]
]
}
}
]
}