Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

easy-linked-list

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easy-linked-list

Simple linked list implementation for JavaScript

  • 1.0.6
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Easy-List: Simple Doubly Linked-List implementation

Because I found out JavaScript didn't have linked lists...

Getting Started

ES6 is required.

Installation

npm install easy-list@latest

Basic Usage

Supports both Typescript and Javascript
Typescript

import { easyList } from 'easy-linked-list'

const list = new easyList<Number>();
list.push(1).push(2).push(3).push(4); // [ 1, 2, 3, 4 ]
list.pop() // [ 1, 2, 3 ]
list.shift() // [ 2, 3 ]
list.unshift(1).unshift(0) // [ 0, 1, 2, 3 ]
list.isEmpty() // false
list.set(1, 4) // [ 0, 4, 2, 3 ]

Keywords

FAQs

Package last updated on 24 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc