all files / mapbox-gl-draw/src/lib/ is_event_at_coordinates.js

100% Statements 5/5
100% Branches 4/4
100% Functions 1/1
100% Lines 3/3
1 2 3 4 5 6 7  55× 54×      
function isEventAtCoordinates(event, coordinates) {
  if (!event.lngLat) return false;
  return event.lngLat.lng === coordinates[0] && event.lngLat.lat === coordinates[1];
}
 
module.exports = isEventAtCoordinates;