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

@mediocre/bloodhound

Package Overview
Dependencies
Maintainers
3
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mediocre/bloodhound - npm Package Compare versions

Comparing version 1.11.5 to 1.11.6

7

carriers/dhl.js

@@ -145,3 +145,4 @@ const async = require('async');

let timezone = 'America/New_York';
if (address && address.timezone) {
if (address?.timezone) {
timezone = address.timezone;

@@ -152,5 +153,5 @@ }

address: {
city: address.city,
city: address?.city,
country: event.location.address.countryCode,
state: address.state,
state: address?.state,
zip: event.location.address.postalCode

@@ -157,0 +158,0 @@ },

@@ -43,3 +43,3 @@ {

},
"version": "1.11.5"
"version": "1.11.6"
}

@@ -7,3 +7,3 @@ const async = require('async');

var pettyCache;
let pettyCache;

@@ -74,3 +74,3 @@ function geocode(location, callback) {

exports.addressToString = function(address) {
var value = '';
let value = '';

@@ -116,3 +116,3 @@ if (address.city) {

// Use Redis (via Petty Cache)
if (options && options.pettyCache) {
if (options?.pettyCache) {
if (!pettyCache) {

@@ -119,0 +119,0 @@ pettyCache = new PettyCache(options.pettyCache.port, options.pettyCache.host, options.pettyCache.options);

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