New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

doublylinked

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

doublylinked - npm Package Compare versions

Comparing version 2.5.0 to 2.5.1

10

lib/doubly-linked.d.ts

@@ -28,3 +28,3 @@ /// <reference lib="es2015.symbol" />

concat(...element: T[]): DoublyLinked;
concat(...element: T[]): DoublyLinked<T>;

@@ -41,3 +41,3 @@ entries(): IterableIterator<[number, T]>;

filter(callback: (element: T, index?: number, thisArg?: any) => Maybe<boolean>, thisArg?: any): DoublyLinked;
filter(callback: (element: T, index?: number, thisArg?: any) => Maybe<boolean>, thisArg?: any): DoublyLinked<T>;

@@ -56,3 +56,3 @@ find(callback: (element: T, index?: number, thisArg?: any) => Maybe<boolean>, thisArg?: any): T;

map(callback: (element: T, index?: number, thisArg?: any) => void): DoublyLinked;
map(callback: (element: T, index?: number, thisArg?: any) => void): DoublyLinked<T>;

@@ -73,5 +73,5 @@ next(): T;

reset(): DoublyLinked;
reset(): DoublyLinked<T>;
reverse(): DoublyLinked;
reverse(): DoublyLinked<T>;

@@ -78,0 +78,0 @@ shift(): T;

{
"name": "doublylinked",
"description": "Doubly linked list implementation for JavaScript with iterator and array-like interface",
"version": "2.5.0",
"version": "2.5.1",
"author": "Panates Ltd.",

@@ -20,7 +20,6 @@ "contributors": [

],
"dependencies": {},
"devDependencies": {
"eslint": "^8.8.0",
"eslint": "^8.18.0",
"eslint-config-google": "^0.14.0",
"mocha": "^9.0.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0"

@@ -27,0 +26,0 @@ },

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