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

a-star

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

a-star - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

3

index.js

@@ -36,2 +36,3 @@ var assert = require('assert')

status: 'timeout',
cost: bestNode.g,
path: reconstructPath(bestNode),

@@ -46,2 +47,3 @@ };

status: 'success',
cost: node.g,
path: reconstructPath(node),

@@ -93,2 +95,3 @@ };

status: "noPath",
cost: bestNode.g,
path: reconstructPath(bestNode),

@@ -95,0 +98,0 @@ };

8

package.json
{
"name": "a-star",
"version": "0.1.0",
"version": "0.2.0",
"description": "Generic synchronous A* search algorithm",

@@ -13,6 +13,6 @@ "main": "index.js",

"dependencies": {
"Set": "~0.4.0",
"heap": "~0.2.1",
"dict": "~1.1.0"
"Set": "^0.4.1",
"dict": "^1.4.0",
"heap": "^0.2.3"
}
}
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