@pacote/linked-list
Advanced tools
Comparing version 0.4.2 to 0.4.3
@@ -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 @@ |
@@ -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" | ||
} |
90036