@manubb/union-find
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -5,3 +5,3 @@ { | ||
"author": "Manuel Baclet <mbaclet@gmail.com>", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"main": "union-find.js", | ||
@@ -8,0 +8,0 @@ "scripts": { |
@@ -1,3 +0,3 @@ | ||
Union--Find | ||
=========== | ||
Union-Find | ||
========== | ||
@@ -9,3 +9,3 @@ A JS implementation of [disjoint-set](https://en.wikipedia.org/wiki/Disjoint-set_data_structure) data structure for node and browsers. | ||
``` | ||
npm install @manubb/union--find | ||
npm install @manubb/union-find | ||
``` | ||
@@ -67,3 +67,3 @@ | ||
```js | ||
import { makeSet, find, union } from 'union--find'; | ||
import { makeSet, find, union } from '@manubb/union-find'; | ||
``` | ||
@@ -74,3 +74,3 @@ | ||
```js | ||
const { makeSet, find, union } = require('union--find'); | ||
const { makeSet, find, union } = require('@manubb/union-find'); | ||
``` |
9626