New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

structure-extend

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

structure-extend

javascript data structure extend

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

structure-extend

javascript data structure extend.

sum up all data structures of @kartjim into a single repository.

  • Queue
    • @kartjim/queue
  • Stack
  • MaxHeap / MinHeap / minHeapSort / maxHeapSort
  • PriorityQueue
  • LinkedList / DoubleLinkedList / LinkedListNode / DoubleLinkedListNode,

install

npm i structure-extend

or use yarn

yarn add structure-extend

import

const {
    Queue,
    Stack,
    MaxHeap,
    MinHeap,
    minHeapSort,
    maxHeapSort,
    PriorityQueue,
    LinkedList,
    DoubleLinkedList,
    LinkedListNode,
    DoubleLinkedListNode
} = require('structure-extend')

or use ESM:

import {
    Queue,
    Stack,
    MaxHeap,
    MinHeap,
    minHeapSort,
    maxHeapSort,
    PriorityQueue,
    LinkedList,
    DoubleLinkedList,
    LinkedListNode,
    DoubleLinkedListNode,
} from 'structure-extend';

LICENSE

MIT

Keywords

javascript

FAQs

Package last updated on 18 Jan 2023

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