Skip to content

Commit

Permalink
Removed export statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
emeryberger committed Jan 2, 2022
1 parent 6939bcf commit 428a11e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion continents.js
Original file line number Diff line number Diff line change
@@ -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]))) {
Expand Down
2 changes: 1 addition & 1 deletion continents.ts
Original file line number Diff line number Diff line change
@@ -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]))) {
Expand Down

0 comments on commit 428a11e

Please sign in to comment.