Socket
Socket
Sign inDemoInstall

@datastructures-js/linked-list

Package Overview
Dependencies
0
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.1.0 to 6.1.1

4

CHANGELOG.md

@@ -8,2 +8,6 @@ # Changelog

## [Unreleased]
## [6.1.1] - 2023-09-16
### Fixed
- `toArray` fix ts return type.
## [6.1.0] - 2023-05-28

@@ -10,0 +14,0 @@ ### Added

2

package.json
{
"name": "@datastructures-js/linked-list",
"version": "6.1.0",
"version": "6.1.1",
"description": "a javascript implementation of LinkedList & DoublyLinkedList",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -23,3 +23,3 @@ import { DoublyLinkedListNode } from './doublyLinkedListNode';

count(): number;
toArray(): T[];
toArray(): DoublyLinkedListNode[];
isEmpty(): boolean;

@@ -26,0 +26,0 @@ clear(): void;

@@ -17,3 +17,3 @@ import { LinkedListNode } from './linkedListNode';

count(): number;
toArray(): T[];
toArray(): LinkedListNode[];
isEmpty(): boolean;

@@ -20,0 +20,0 @@ clear(): void;

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc