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.4 to 1.3.5

5

dist-esm/LinkedNodeList.js

@@ -9,2 +9,3 @@ /*

import IterableCollectionBase from '@tsdotnet/collection-base/dist/IterableCollectionBase';
import { ExtendedIterable } from '@tsdotnet/collection-base';
/* eslint-disable @typescript-eslint/no-this-alias */

@@ -337,3 +338,3 @@ /*****************************

const _ = this;
return {
return _._reversed || (_._reversed = Object.freeze(ExtendedIterable.create({
*[Symbol.iterator]() {

@@ -347,3 +348,3 @@ let current, prev = _.last;

}
};
})));
}

@@ -350,0 +351,0 @@ *_getIterator() {

3

dist/LinkedNodeList.d.ts

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

replace(node: TNode, replacement: TNode): this;
private _reversed?;
/**

@@ -149,3 +150,3 @@ * Iterable for iterating this collection in reverse order.

*/
get reversed(): Iterable<ProtectedLinkedNode<TNode>>;
get reversed(): Readonly<Iterable<ProtectedLinkedNode<TNode>>>;
protected _getIterator(): Iterator<ProtectedLinkedNode<TNode>>;

@@ -152,0 +153,0 @@ }

@@ -13,2 +13,3 @@ "use strict";

const IterableCollectionBase_1 = tslib_1.__importDefault(require("@tsdotnet/collection-base/dist/IterableCollectionBase"));
const collection_base_1 = require("@tsdotnet/collection-base");
/* eslint-disable @typescript-eslint/no-this-alias */

@@ -341,3 +342,3 @@ /*****************************

const _ = this;
return {
return _._reversed || (_._reversed = Object.freeze(collection_base_1.ExtendedIterable.create({
*[Symbol.iterator]() {

@@ -351,3 +352,3 @@ let current, prev = _.last;

}
};
})));
}

@@ -354,0 +355,0 @@ *_getIterator() {

{
"name": "@tsdotnet/linked-node-list",
"version": "1.3.4",
"version": "1.3.5",
"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