🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

graph-typed

Package Overview
Dependencies
Maintainers
0
Versions
171
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graph-typed - npm Package Compare versions

Comparing version

to
1.52.3

7

dist/data-structures/trie/trie.js

@@ -421,4 +421,9 @@ "use strict";

const nodeC = startNode.children.get(c);
if (nodeC)
if (nodeC) {
startNode = nodeC;
}
else {
// Early return if the whole prefix is not found
return [];
}
}

@@ -425,0 +430,0 @@ }

4

package.json
{
"name": "graph-typed",
"version": "1.52.2",
"version": "1.52.3",
"description": "Graph. Javascript & Typescript Data Structure.",

@@ -139,4 +139,4 @@ "main": "dist/index.js",

"dependencies": {
"data-structure-typed": "^1.52.2"
"data-structure-typed": "^1.52.3"
}
}

@@ -457,3 +457,8 @@ /**

const nodeC = startNode.children.get(c);
if (nodeC) startNode = nodeC;
if (nodeC) {
startNode = nodeC;
} else {
// Early return if the whole prefix is not found
return [];
}
}

@@ -460,0 +465,0 @@ }