Turf issue #1980

by Stefano

HTML

<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css">
<script src="https://cdn.jsdelivr.net/npm/@turf/turf@5/turf.min.js"></script>
<div id="map"></div>

CSS

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

#map {
  width: 100%;
  height: 100%;
}

JavaScript

const a = turf.polygon([[[-138.73721748279914,2.0783782250758946],[-141.54971748279917,6.2849421612509815],[-134.07528251720086,11.208361735012105],[-131.26278251720083,7.043979226170151],[-138.73721748279914,2.0783782250758946]]]);

const issue = [-138.73721748279917,2.078378225075909];

const b =...