index.js 451 B

123456789101112131415161718
  1. /**
  2. * Polyfill for IE support
  3. */
  4. import './Array'
  5. import './Number'
  6. import './Math'
  7. /**
  8. * Turf JSTS dependant modules
  9. *
  10. * GeoJSONReader => all modules
  11. * GeoJSONWriter => all modules
  12. * OverlayOp => @turf/intersect & @turf/difference
  13. * UnionOp => @turf/union
  14. * BufferOp => @turf/buffer
  15. */
  16. export { GeoJSONReader, GeoJSONWriter } from './org/locationtech/jts/io'
  17. export { OverlayOp, UnionOp, BufferOp } from './org/locationtech/jts/operation'