Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@binance/fingerprint

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@binance/fingerprint - npm Package Compare versions

Comparing version 1.3.55 to 1.3.56

12

dist/esm/fingerprint.js

@@ -56,5 +56,4 @@ import _async_to_generator from "@swc/helpers/src/_async_to_generator.mjs";

var getTimezone = function getTimezone(offset) {
var totalMinutes = -offset;
var hours = Math.floor(Math.abs(totalMinutes) / 60);
var minutes = Math.abs(totalMinutes % 60);
var hours = Math.floor(Math.abs(offset) / 60);
var minutes = Math.abs(offset % 60);
var tz;

@@ -66,3 +65,8 @@ if (minutes === 0) {

}
if (totalMinutes > 0) tz = "+".concat(tz);
// If offset is positive, use negative timezone; if negative, use positive timezone
if (offset > 0) {
tz = "-".concat(tz);
} else {
tz = "+".concat(tz);
}
return "GMT".concat(tz);

@@ -69,0 +73,0 @@ };

@@ -121,5 +121,4 @@ "use strict";

var getTimezone = function getTimezone(offset) {
var totalMinutes = -offset;
var hours = Math.floor(Math.abs(totalMinutes) / 60);
var minutes = Math.abs(totalMinutes % 60);
var hours = Math.floor(Math.abs(offset) / 60);
var minutes = Math.abs(offset % 60);
var tz;

@@ -131,3 +130,8 @@ if (minutes === 0) {

}
if (totalMinutes > 0) tz = "+".concat(tz);
// If offset is positive, use negative timezone; if negative, use positive timezone
if (offset > 0) {
tz = "-".concat(tz);
} else {
tz = "+".concat(tz);
}
return "GMT".concat(tz);

@@ -134,0 +138,0 @@ };

{
"name": "@binance/fingerprint",
"version": "1.3.55",
"version": "1.3.56",
"description": "binance web fingerprint",

@@ -5,0 +5,0 @@ "publishConfig": {

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