mapbox / delaunator

An incredibly fast JavaScript library for Delaunay triangulation of 2D points
https://mapbox.github.io/delaunator/
ISC License
2.3k stars 141 forks source link

Fix browserify's export name #18

Closed frogcat closed 6 years ago

frogcat commented 6 years ago

Currently, browserified module is exported to window.delaunator , so we have to call new delaunator(points) instead of new Delaunator(points).

mourner commented 6 years ago

Good catch, thanks!