|
1 |
| -[@aureooms/js-persistent-stack](https://aureooms.github.io/js-persistent-stack) |
| 1 | +[@functional-data-structure/persistent-stack](https://functional-data-structure.github.io/persistent-stack) |
2 | 2 | ==
|
3 | 3 |
|
4 | 4 | Persistent stack data structures for JavaScript.
|
5 |
| -See [docs](https://aureooms.github.io/js-persistent-stack/index.html). |
| 5 | +See [docs](https://functional-data-structure.github.io/persistent-stack/index.html). |
6 | 6 |
|
7 | 7 | > :warning: The code requires `regeneratorRuntime` to be defined, for instance by importing
|
8 | 8 | > [regenerator-runtime/runtime](https://www.npmjs.com/package/regenerator-runtime).
|
9 | 9 |
|
10 | 10 | ```js
|
11 |
| -import {empty, from, isEmpty, push, pop, peek, iter} from '@aureooms/js-persistent-stack'; |
| 11 | +import {empty, from, isEmpty, push, pop, peek, iter} from '@functional-data-structure/persistent-stack'; |
12 | 12 | let stack = from('abc');
|
13 | 13 | let values = [...iter(stack)].join(''); // cba
|
14 | 14 | ...
|
15 | 15 | ```
|
16 | 16 |
|
17 |
| -[](https://raw.githubusercontent.com/aureooms/js-persistent-stack/main/LICENSE) |
18 |
| -[](https://www.npmjs.org/package/@aureooms/js-persistent-stack) |
19 |
| -[](https://travis-ci.org/aureooms/js-persistent-stack/branches) |
20 |
| -[](https://david-dm.org/aureooms/js-persistent-stack) |
21 |
| -[](https://david-dm.org/aureooms/js-persistent-stack?type=dev) |
22 |
| -[](https://github.com/aureooms/js-persistent-stack/issues) |
23 |
| -[](https://www.npmjs.org/package/@aureooms/js-persistent-stack) |
| 17 | +[](https://raw.githubusercontent.com/functional-data-structure/persistent-stack/main/LICENSE) |
| 18 | +[](https://www.npmjs.org/package/@functional-data-structure/persistent-stack) |
| 19 | +[](https://travis-ci.org/functional-data-structure/persistent-stack/branches) |
| 20 | +[](https://david-dm.org/functional-data-structure/persistent-stack) |
| 21 | +[](https://david-dm.org/functional-data-structure/persistent-stack?type=dev) |
| 22 | +[](https://github.com/functional-data-structure/persistent-stack/issues) |
| 23 | +[](https://www.npmjs.org/package/@functional-data-structure/persistent-stack) |
24 | 24 |
|
25 |
| -[](https://codeclimate.com/github/aureooms/js-persistent-stack/issues) |
26 |
| -[](https://codeclimate.com/github/aureooms/js-persistent-stack/trends/churn) |
27 |
| -[](https://codecov.io/gh/aureooms/js-persistent-stack) |
28 |
| -[](https://codeclimate.com/github/aureooms/js-persistent-stack/trends/technical_debt) |
29 |
| -[](https://aureooms.github.io/js-persistent-stack/source.html) |
30 |
| -[](https://bundlephobia.com/result?p=@aureooms/js-persistent-stack) |
| 25 | +[](https://codeclimate.com/github/functional-data-structure/persistent-stack/issues) |
| 26 | +[](https://codeclimate.com/github/functional-data-structure/persistent-stack/trends/churn) |
| 27 | +[](https://codecov.io/gh/functional-data-structure/persistent-stack) |
| 28 | +[](https://codeclimate.com/github/functional-data-structure/persistent-stack/trends/technical_debt) |
| 29 | +[](https://functional-data-structure.github.io/persistent-stack/source.html) |
| 30 | +[](https://bundlephobia.com/result?p=@functional-data-structure/persistent-stack) |
0 commit comments