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

@data-structs/linked-list

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@data-structs/linked-list - npm Package Compare versions

Comparing version 1.0.10 to 1.0.11

4

dist/cjs/index.js

@@ -174,2 +174,6 @@ 'use strict'

pop() {
if (size.current === 0) {
return
}
const result = tail.current.value,

@@ -176,0 +180,0 @@ prev = tail.current

@@ -143,2 +143,6 @@ export const insertNode = (left = null, value, right = null) => {

pop() {
if (size.current === 0) {
return
}
const result = tail.current.value,

@@ -145,0 +149,0 @@ prev = tail.current

2

package.json
{
"name": "@data-structs/linked-list",
"version": "1.0.10",
"version": "1.0.11",
"main": "dist/cjs/index.js",

@@ -5,0 +5,0 @@ "module": "dist/es/index.js",

@@ -159,2 +159,6 @@ export const insertNode = (left = null, value, right = null) => {

pop () {
if (size.current === 0) {
return
}
const result = tail.current.value, prev = tail.current

@@ -161,0 +165,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