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

@tsdotnet/linked-node-list

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tsdotnet/linked-node-list - npm Package Compare versions

Comparing version 1.3.2 to 1.3.3

17

dist-esm/LinkedNodeList.js

@@ -330,2 +330,19 @@ /*

}
/**
* Iterable for iterating this collection in reverse order.
* @return {Iterable<ProtectedLinkedNode>}
*/
get reversed() {
const _ = this;
return {
*[Symbol.iterator]() {
let current, prev = _.last;
while (prev) {
current = prev;
prev = current.previous;
yield current;
}
}
};
}
*_getIterator() {

@@ -332,0 +349,0 @@ let current, next = this.first;

@@ -144,2 +144,7 @@ import { ArrayLikeWritable, PredicateWithIndex } from '@tsdotnet/common-interfaces';

replace(node: TNode, replacement: TNode): this;
/**
* Iterable for iterating this collection in reverse order.
* @return {Iterable<ProtectedLinkedNode>}
*/
get reversed(): Iterable<ProtectedLinkedNode<TNode>>;
protected _getIterator(): Iterator<ProtectedLinkedNode<TNode>>;

@@ -146,0 +151,0 @@ }

@@ -334,2 +334,19 @@ "use strict";

}
/**
* Iterable for iterating this collection in reverse order.
* @return {Iterable<ProtectedLinkedNode>}
*/
get reversed() {
const _ = this;
return {
*[Symbol.iterator]() {
let current, prev = _.last;
while (prev) {
current = prev;
prev = current.previous;
yield current;
}
}
};
}
*_getIterator() {

@@ -336,0 +353,0 @@ let current, next = this.first;

2

package.json
{
"name": "@tsdotnet/linked-node-list",
"version": "1.3.2",
"version": "1.3.3",
"description": "An unprotected bi-directional linked list. Useful for implementing other collections.",

@@ -5,0 +5,0 @@ "author": "electricessence",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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