@datastructures-js/graph
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -7,4 +7,8 @@ # Changelog | ||
## [v3.0.1] - 2020-01-02 | ||
### Fixed | ||
- typos in readme | ||
## [v3.0.0] - 2020-01-01 | ||
### Added | ||
- new release of graph npm |
{ | ||
"name": "@datastructures-js/graph", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "graph & directed graph implementation in javascript", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -21,3 +21,3 @@ # @datastructures-js/graph | ||
* [.edgesCount()](#edgescount) | ||
* [.getWeight(srcKey, destKey)](#getweightsrcKey-destKey)) | ||
* [.getWeight(srcKey, destKey)](#getweightsrcKey-destKey) | ||
* [.removeVertex(key)](#removevertexkey) | ||
@@ -317,3 +317,3 @@ * [.removeEdge(key)](#removeedgesrckey-destkey) | ||
#### Eample | ||
#### Example | ||
```js | ||
@@ -354,3 +354,3 @@ directedGraph.traverseDfs('v1', (v) => console.log(`${v.getKey()}:${v.getValue()}`)); | ||
#### Eample | ||
#### Example | ||
```js | ||
@@ -357,0 +357,0 @@ directedGraph.traverseBfs('v1', (v) => console.log(`${v.getKey()}:${v.getValue()}`)); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
52096
2