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

cuckoo-filter

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cuckoo-filter - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

test/cuckoo-filter-test.js

2

package.json
{
"name": "cuckoo-filter",
"version": "1.0.6",
"version": "1.0.7",
"description": "Cuckoo Filter: Better Than Bloom",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -131,3 +131,3 @@ 'use strict'

fingerprint = buckets[ i ].swap(fingerprint)
i ^= fingerprint.hash() % cfSize
i = (i ^ fingerprint.hash()) % cfSize
if (!buckets[ i ]) {

@@ -140,2 +140,4 @@ buckets[ i ] = new Bucket(bSize)

return true
} else {
continue
}

@@ -142,0 +144,0 @@ }

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