diff --git a/package.json b/package.json index 43aea79..19ed8db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nostr-geotags", - "version": "0.4.0", + "version": "0.4.1", "description": "Give an object of geodata, returns standardized nostr geotags ", "type": "module", "main": "dist/index.js", @@ -22,7 +22,7 @@ "transform" ], "dependencies": { - "iso-3166": "4.3.1", + "iso-3166": "4.3.0", "ngeohash": "0.6.3" }, "scripts": { diff --git a/src/index.ts b/src/index.ts index 58b3c31..1982633 100644 --- a/src/index.ts +++ b/src/index.ts @@ -189,7 +189,6 @@ const generateTags = (input: InputData, opts: Options): GeoTags[] => { const partialGeohash = fullGeohash.substring(0, i); const tag: Geohash = ['g', partialGeohash ] if(!opts.legacy) tag.push('geohash') - console.log('wtf', 'tag length', tag.length) tags.push(tag); } } @@ -198,7 +197,6 @@ const generateTags = (input: InputData, opts: Options): GeoTags[] => { // GPS if(opts?.gps && input.geohash && (!input?.lat || !input?.lon)) { const dd = ngeohash.decode(input.geohash) - console.log('wtf', dd) input.lat = dd.latitude input.lon = dd.longitude }