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

hasharray

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hasharray - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

package.json

@@ -6,3 +6,3 @@ {

"description": "A data structure that combines a hash and an array for fast dictionary lookup and traversal by complex keys.",
"version": "1.1.0",
"version": "1.1.1",
"main": "index.js",

@@ -9,0 +9,0 @@ "url": "https://github.com/joshjung/hash-array",

@@ -41,3 +41,3 @@ /*===========================================================================*\

if (inst) {
if (this._map[inst]) {
if (this.has(inst)) {
if (this.options.ignoreDuplicates)

@@ -213,3 +213,3 @@ return;

var key2 = this.objectAt(item, this.keyFields[ix]);
if (key2 && this._map[key2]) {
if (key2 && this.has(key2)) {
var ix = this._map[key2].indexOf(item);

@@ -216,0 +216,0 @@ if (ix != -1) {

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