From 25eb2ae812c954291eac1b8fdaa1554055772967 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Wed, 11 Dec 2024 02:33:17 +0100 Subject: [PATCH] Chore: use strict --- src/Logic/Osm/Overpass.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Logic/Osm/Overpass.ts b/src/Logic/Osm/Overpass.ts index 31f9b79cd..8baefb681 100644 --- a/src/Logic/Osm/Overpass.ts +++ b/src/Logic/Osm/Overpass.ts @@ -6,7 +6,7 @@ import osmtogeojson from "osmtogeojson" import { FeatureCollection } from "@turf/turf" import { Geometry } from "geojson" import { OsmTags } from "../../Models/OsmFeature" - +"use strict"; /** * Interfaces overpass to get all the latest data */ @@ -71,9 +71,9 @@ export class Overpass { console.warn("No features for", json) } - const geojson = osmtogeojson(json) + const geojson = > osmtogeojson(json) const osmTime = new Date(json.osm3s.timestamp_osm_base) - return [geojson, osmTime] + return [geojson, osmTime] } /**