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

@thi.ng/associative

Package Overview
Dependencies
Maintainers
1
Versions
300
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/associative - npm Package Compare versions

Comparing version 6.0.8 to 6.0.9

4

array-set.js

@@ -82,3 +82,3 @@ var ArraySet_1;

const { equiv, vals } = __private.get(this);
for (let i = vals.length; --i >= 0;) {
for (let i = vals.length; i-- > 0;) {
if (equiv(vals[i], key)) {

@@ -107,3 +107,3 @@ vals.splice(i, 1);

const vals = __vals(this);
for (let i = vals.length; --i >= 0;) {
for (let i = vals.length; i-- > 0;) {
const v = vals[i];

@@ -110,0 +110,0 @@ fn.call(thisArg, v, v, this);

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

## [6.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@6.0.8...@thi.ng/associative@6.0.9) (2021-11-10)
**Note:** Version bump only for package @thi.ng/associative
## [6.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@6.0.7...@thi.ng/associative@6.0.8) (2021-11-03)

@@ -8,0 +16,0 @@

{
"name": "@thi.ng/associative",
"version": "6.0.8",
"version": "6.0.9",
"description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations",

@@ -37,11 +37,11 @@ "type": "module",

"dependencies": {
"@thi.ng/api": "^8.1.0",
"@thi.ng/arrays": "^2.0.7",
"@thi.ng/binary": "^3.0.7",
"@thi.ng/checks": "^3.0.6",
"@thi.ng/compare": "^2.0.7",
"@thi.ng/dcons": "^3.0.8",
"@thi.ng/equiv": "^2.0.6",
"@thi.ng/api": "^8.2.0",
"@thi.ng/arrays": "^2.0.8",
"@thi.ng/binary": "^3.0.8",
"@thi.ng/checks": "^3.0.7",
"@thi.ng/compare": "^2.0.8",
"@thi.ng/dcons": "^3.0.9",
"@thi.ng/equiv": "^2.0.7",
"@thi.ng/errors": "^2.0.6",
"@thi.ng/transducers": "^8.0.7",
"@thi.ng/transducers": "^8.0.8",
"tslib": "^2.3.1"

@@ -184,3 +184,3 @@ },

},
"gitHead": "852cd2450617c86d15d18477dc634f17f04202eb"
"gitHead": "5fe52419af63984ebe53032201b2a6174b9cb159"
}

@@ -189,3 +189,3 @@ <!-- This file is generated - DO NOT EDIT! -->

Package sizes (gzipped, pre-treeshake): ESM: 6.43 KB
Package sizes (gzipped, pre-treeshake): ESM: 6.96 KB

@@ -192,0 +192,0 @@ ## Dependencies

@@ -150,3 +150,3 @@ var SortedMap_1;

node.next[level].v = v;
} while (--level >= 0);
} while (level-- > 0);
return this;

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

@@ -43,3 +43,3 @@ import { __decorate } from "tslib";

const d = $this.dense;
for (let i = $this.n; --i >= 0;) {
for (let i = $this.n; i-- > 0;) {
if (!o.has(d[i])) {

@@ -46,0 +46,0 @@ return false;

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