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

iterable-hash-table

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iterable-hash-table - npm Package Compare versions

Comparing version 3.1.5 to 3.2.0

src/index.d.ts

4

package.json
{
"name": "iterable-hash-table",
"version": "3.1.5",
"version": "3.2.0",
"description": "A simple Iterable Hash Table written in TypeScript",

@@ -12,3 +12,3 @@ "main": "public/HashTable.js",

"author": "fluxxfield",
"license": "ISC",
"license": "MIT",
"dependencies": {

@@ -15,0 +15,0 @@ "typescript": "^3.8.2"

@@ -463,2 +463,2 @@ 'use strict';

;
module.exports = HashTable;
export default HashTable;

@@ -293,3 +293,3 @@ 'use strict';

*/
_resize(sizeType: string) {
_resize(sizeType: string): void {
// Helper function used to check if a number is Prime

@@ -365,3 +365,3 @@ const isPrime = (num: number): boolean => {

*/
clear() {
clear(): void {
this._buckets = Array(this._originalSize);

@@ -374,2 +374,2 @@ this._size = this._originalSize;

module.exports = HashTable;
export default HashTable;

@@ -7,2 +7,4 @@ {

"module": "es6",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"downlevelIteration": true,

@@ -9,0 +11,0 @@ "moduleResolution": "node",

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