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

ds-js-stl

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ds-js-stl - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

data-structures/deque.js

8

index.js

@@ -1,2 +0,6 @@

export * from './data-structures/stack.js';
export * from './data-structures/queue.js';
export { Stack } from './data-structures/stack.js';
export { Queue } from './data-structures/queue.js';
export { LinkedList } from './data-structures/linkedList.js';
export { DoubleLinkedList } from './data-structures/doubleLinkedList.js';
export { Deque } from './data-structures/deque.js';
export { PriorityQueue } from './data-structures/priorityQueue.js';
{
"name": "ds-js-stl",
"version": "1.0.1",
"version": "1.0.2",
"description": "ds-kit is an NPM package provide ready to use famous data structures to JavaScript. It draws inspiration from the structured beauty of C++ STL.",

@@ -15,2 +15,4 @@ "main": "index.js",

"keywords": [
"ds",
" data structure javascript",
"data-structures",

@@ -33,7 +35,2 @@ "algorithms",

"heap",
"sorting-algorithms",
"searching-algorithms",
"graph-algorithms",
"dynamic-programming",
"trie",
"priority-queue",

@@ -40,0 +37,0 @@ "JavaScript",

@@ -21,3 +21,3 @@ ## Install

import { Stack, Queue, PriorityQueue, DoubleLinkedList, LinkedList, Deque } from 'ds-kit';
import { Stack, Queue, PriorityQueue, DoubleLinkedList, LinkedList, Deque } from 'ds-js-stl/index.js';

@@ -24,0 +24,0 @@ const stack = new Stack();

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