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

node-fpgrowth

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-fpgrowth - npm Package Compare versions

Comparing version

to
0.1.7

2

dist/fptree.js

@@ -113,3 +113,3 @@ "use strict";

var prefixPaths = this._getPrefixPaths(start, function (i, count) {
conditionalTreeSupports[JSON.stringify(i)] = (conditionalTreeSupports[JSON.stringify(i)] || 0) + count;
conditionalTreeSupports[JSON.stringify(i)] = (conditionalTreeSupports[JSON.stringify(i)] || 1) + 1;
});

@@ -116,0 +116,0 @@ // FP-Tree is built from the conditional tree supports and the processed prefix paths.

{
"name": "node-fpgrowth",
"version": "0.1.6",
"version": "0.1.7",
"description": "FPGrowth Algorithm implementation in TypeScript / JavaScript.",

@@ -5,0 +5,0 @@ "main": "dist/fpgrowth.js",

@@ -130,3 +130,3 @@ import { FPNode } from './fpnode';

let prefixPaths: IPrefixPath<T>[] = this._getPrefixPaths(start, (i: T, count: number) => {
conditionalTreeSupports[JSON.stringify(i)] = (conditionalTreeSupports[JSON.stringify(i)] || 0) + count;
conditionalTreeSupports[JSON.stringify(i)] = (conditionalTreeSupports[JSON.stringify(i)] || 1) + 1;
});

@@ -133,0 +133,0 @@