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

easylinkedlist

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

easylinkedlist

Doubly linked list implementation for JavaScript

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-66.67%
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

Importing

Supports both Typescript and Javascript
Typescript importing

import { easyLinkedList } from 'easylinkedlist' 

const list = new easyLinkedList<Number>();

CommonJS importing

const { easyLinkedList } = require('easylinkedlist');
const list = new easyLinkedList();

Basic Usage

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 ]

Documentation

Keywords

FAQs

Package last updated on 26 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