New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ip2location-nodejs

Package Overview
Dependencies
Maintainers
0
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ip2location-nodejs - npm Package Compare versions

Comparing version 9.6.1 to 9.6.2

2

package.json
{
"name": "ip2location-nodejs",
"version": "9.6.1",
"version": "9.6.2",
"description": "IP2Location geolocation component",

@@ -5,0 +5,0 @@ "keywords": [

@@ -327,3 +327,3 @@ export class IP2Location {

*/
getLatitude(myIP: string): string;
getLatitude(myIP: string): string | number;
/**

@@ -335,3 +335,3 @@ * Returns the latitude asynchronously.

*/
getLatitudeAsync(myIP: string): Promise<string>;
getLatitudeAsync(myIP: string): Promise<string | number>;
/**

@@ -343,3 +343,3 @@ * Returns the longitude.

*/
getLongitude(myIP: string): string;
getLongitude(myIP: string): string | number;
/**

@@ -351,3 +351,3 @@ * Returns the longitude asynchronously.

*/
getLongitudeAsync(myIP: string): Promise<string>;
getLongitudeAsync(myIP: string): Promise<string | number>;
/**

@@ -621,4 +621,4 @@ * Returns the domain name.

zipCode: string;
latitude: string;
longitude: string;
latitude: string | number;
longitude: string | number;
timeZone: string;

@@ -657,4 +657,4 @@ netSpeed: string;

zipCode: string;
latitude: string;
longitude: string;
latitude: string | number;
longitude: string | number;
timeZone: string;

@@ -661,0 +661,0 @@ netSpeed: string;

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc