csv2geojson
csv2geojson copied to clipboard
fix: remove parse due unsafety and replace it with parseRows
What github issue is this PR for, if any?
Fix unsafety detected by issue https://github.com/mapbox/csv2geojson/issues/73
What changed, and why?
- Was removed
parsefunction and replace byparseRowsfrom csv2geojson.
In d3-dsv repository says that parse is unsafety and you can replace for parseRows. Go to Content Security Policy in this link: https://github.com/d3/d3-dsv
How is this tested?
All the tests passed. No further tests were required for this fix.