File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
1
:izakaya_lantern : [ @data-structure-algebra/singly-linked-list ] ( https://data-structure-algebra.github.io/singly-linked-list )
2
2
==
3
3
4
- Singly linked list for JavaScript.
4
+ Singly linked lists for JavaScript.
5
5
See [ docs] ( https://data-structure-algebra.github.io/singly-linked-list/index.html ) .
6
+ Parent is [ js-data-structures] ( https://github.com/make-github-pseudonymous-again/js-data-structures ) .
6
7
7
8
> :warning : Depending on your environment, the code may require
8
9
> ` regeneratorRuntime ` to be defined, for instance by importing
9
10
> [ regenerator-runtime/runtime] ( https://www.npmjs.com/package/regenerator-runtime ) .
10
11
12
+ ``` js
13
+ import {from } from ' @data-structure-algebra/singly-linked-list' ;
14
+ let list = from (' abc' );
15
+ ```
16
+
11
17
[ ![ License] ( https://img.shields.io/github/license/data-structure-algebra/singly-linked-list.svg )] ( https://raw.githubusercontent.com/data-structure-algebra/singly-linked-list/main/LICENSE )
12
18
[ ![ Version] ( https://img.shields.io/npm/v/@data-structure-algebra/singly-linked-list.svg )] ( https://www.npmjs.org/package/@data-structure-algebra/singly-linked-list )
13
19
[ ![ Tests] ( https://img.shields.io/github/workflow/status/data-structure-algebra/singly-linked-list/ci:test?event=push&label=tests )] ( https://github.com/data-structure-algebra/singly-linked-list/actions/workflows/ci:test.yml?query=branch:main )
You can’t perform that action at this time.
0 commit comments