We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24fed7e commit a50a98bCopy full SHA for a50a98b
README.md
@@ -9,11 +9,9 @@ Parent is
9
[js-data-structures](https://github.com/make-github-pseudonymous-again/js-data-structures).
10
11
```js
12
-import { DoublyLinkedList } from '@list-abstraction/doubly-linked-list' ;
13
-
14
-let list = new DoublyLinkedList( ) ;
15
-for (const value of 'abc') list.push(value);
+import {DoublyLinkedList} from '@list-abstraction/doubly-linked-list';
16
+let list = DoublyLinkedList.from('abc');
17
for (const value of list) ... ;
18
```
19
0 commit comments