1.2.0 • Published 9 months ago

@foxkit/list v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Foxkit List

Foxkit List is a Doubly-linked List datastructure for JavaScript and TypeScript.

Installation

Install the package using the package manager used by your project:

npm install @foxkit/list
pnpm add @foxkit/list
yarn add @foxkit/list

Usage

Create a new list and use methods to add and interact with data:

import { List } from "@foxkit/list";

const list = new List(["foo", "bar"]);
list.push("baz");
list.forEach(val => console.log(val));
/* logs:
 * "foo
 * "bar"
 * "baz"
 */

See Documentation for further information.

1.2.0

9 months ago

1.1.1

9 months ago

1.1.0

10 months ago

1.0.0

10 months ago