From 428a11eedc323b3ae9eaff7f1015b49e29bc1520 Mon Sep 17 00:00:00 2001 From: Emery Berger Date: Sun, 2 Jan 2022 17:27:58 -0500 Subject: [PATCH] Removed export statement. --- continents.js | 2 +- continents.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/continents.js b/continents.js index ec00fb3d76..b02907c27e 100644 --- a/continents.js +++ b/continents.js @@ -1,4 +1,4 @@ -export function whichContinent(latitude, longitude) { +function whichContinent(latitude, longitude) { const point = [longitude, latitude]; for (const cont in continents) { if (inPolygon(point, pathToList(continents[cont]))) { diff --git a/continents.ts b/continents.ts index 6124a80ca0..4687964aa7 100644 --- a/continents.ts +++ b/continents.ts @@ -1,4 +1,4 @@ -export function whichContinent(latitude: number, longitude: number) : string { +function whichContinent(latitude: number, longitude: number) : string { const point = [longitude, latitude]; for (const cont in continents) { if (inPolygon(point, pathToList(continents[cont]))) {