Determines whether any of the segments of 2 given linestrings intersect
npm install linestring-intersectlinestring-intersect
====================



Determines whether any of the segments of 2 given linestrings intersect
The module iterates over each of the indices of lineA and uses
robust segment intersect
to determine if it intersects with any of the indices of lineB. If there is an
intersection detected anywhere, the module will return true, otherwise false.
``
var intersect = require('linestring-intersect')
var lineA = [
[172.6747204,-43.5559636],
[172.6786703,-43.5564511],
[172.6800085,-43.5565891]
]
var lineB = [
[172.6732733,-43.5558003],
[172.6747204,-43.5559636]
]
intersect(lineA, lineB) //true
``