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

@pacote/linked-list

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pacote/linked-list - npm Package Compare versions

Comparing version 0.4.2 to 0.4.3

6

CHANGELOG.md

@@ -6,2 +6,8 @@ # Change Log

## [0.4.3](https://github.com/PacoteJS/pacote/compare/@pacote/linked-list@0.4.2...@pacote/linked-list@0.4.3) (2021-01-25)
### Bug Fixes
- 🐛 export ES2019 to prevent common errors with Webpack ([fa8ce59](https://github.com/PacoteJS/pacote/commit/fa8ce59f925e1c888f9727291612490b30dd5842))
## [0.4.2](https://github.com/PacoteJS/pacote/compare/@pacote/linked-list@0.4.1...@pacote/linked-list@0.4.2) (2020-11-27)

@@ -8,0 +14,0 @@

2

lib/esm/core.js

@@ -11,3 +11,3 @@ import { None, Some } from '@pacote/option';

export function cdr(cons) {
return cons?.[1];
return cons === null || cons === void 0 ? void 0 : cons[1];
}

@@ -14,0 +14,0 @@ export function emptyList() {

{
"name": "@pacote/linked-list",
"description": "Immutable linked lists.",
"version": "0.4.2",
"version": "0.4.3",
"sideEffects": false,

@@ -39,3 +39,3 @@ "license": "MIT",

},
"gitHead": "20cb1e3a999ed47a8d52b03b750290cf36b8e270"
"gitHead": "d1bea1be7e91b8a5eea04939964aa95c6d3700df"
}
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