@thi.ng/associative
Advanced tools
Comparing version 6.2.6 to 6.2.7
# Change Log | ||
- **Last updated**: 2022-08-01T22:09:32Z | ||
- **Last updated**: 2022-09-21T21:37:59Z | ||
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub) | ||
@@ -5,0 +5,0 @@ |
{ | ||
"name": "@thi.ng/associative", | ||
"version": "6.2.6", | ||
"version": "6.2.7", | ||
"description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations", | ||
@@ -37,20 +37,20 @@ "type": "module", | ||
"dependencies": { | ||
"@thi.ng/api": "^8.4.1", | ||
"@thi.ng/arrays": "^2.3.5", | ||
"@thi.ng/binary": "^3.3.4", | ||
"@thi.ng/checks": "^3.2.4", | ||
"@thi.ng/compare": "^2.1.11", | ||
"@thi.ng/dcons": "^3.2.13", | ||
"@thi.ng/equiv": "^2.1.9", | ||
"@thi.ng/errors": "^2.1.10", | ||
"@thi.ng/transducers": "^8.3.13", | ||
"@thi.ng/api": "^8.4.2", | ||
"@thi.ng/arrays": "^2.3.6", | ||
"@thi.ng/binary": "^3.3.5", | ||
"@thi.ng/checks": "^3.2.5", | ||
"@thi.ng/compare": "^2.1.12", | ||
"@thi.ng/dcons": "^3.2.14", | ||
"@thi.ng/equiv": "^2.1.10", | ||
"@thi.ng/errors": "^2.2.0", | ||
"@thi.ng/transducers": "^8.3.14", | ||
"tslib": "^2.4.0" | ||
}, | ||
"devDependencies": { | ||
"@microsoft/api-extractor": "^7.25.0", | ||
"@thi.ng/testament": "^0.2.12", | ||
"@microsoft/api-extractor": "^7.31.1", | ||
"@thi.ng/testament": "^0.3.0", | ||
"rimraf": "^3.0.2", | ||
"tools": "^0.0.1", | ||
"typedoc": "^0.22.17", | ||
"typescript": "^4.7.4" | ||
"typescript": "^4.8.3" | ||
}, | ||
@@ -192,3 +192,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "be8423e2019e95c14a096260a93b9762dde0c768\n" | ||
"gitHead": "973139c5aa3b50081020f4cc726a7cc330f77fc7\n" | ||
} |
<!-- This file is generated - DO NOT EDIT! --> | ||
# ![associative](https://media.thi.ng/umbrella/banners/thing-associative.svg?36d13909) | ||
# ![associative](https://media.thi.ng/umbrella/banners-20220914/thing-associative.svg?71ae3dd7) | ||
@@ -15,3 +15,3 @@ [![npm version](https://img.shields.io/npm/v/@thi.ng/associative.svg)](https://www.npmjs.com/package/@thi.ng/associative) | ||
- [Comparison with ES6 native types](#comparison-with-es6-native-types) | ||
- [Status](#status) | ||
- [Status](#status) | ||
- [Installation](#installation) | ||
@@ -161,3 +161,3 @@ - [Dependencies](#dependencies) | ||
### Status | ||
## Status | ||
@@ -164,0 +164,0 @@ **STABLE** - used in production |
@@ -7,5 +7,5 @@ import type { IObjectOf, Pair } from "@thi.ng/api"; | ||
constructor(pairs?: Iterable<Pair<string, T>>); | ||
[Symbol.iterator](): Generator<(string | T)[], void, unknown>; | ||
[Symbol.iterator](): Generator<(string | (T & ({} | null)))[], void, unknown>; | ||
keys(prefix?: string): Generator<string, void, unknown>; | ||
values(): Generator<T, void, unknown>; | ||
values(): Generator<T & ({} | null), void, unknown>; | ||
suffixes(prefix: string, withPrefix?: boolean): Generator<string, void, unknown>; | ||
@@ -12,0 +12,0 @@ clear(): void; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
163088
Updated@thi.ng/api@^8.4.2
Updated@thi.ng/arrays@^2.3.6
Updated@thi.ng/binary@^3.3.5
Updated@thi.ng/checks@^3.2.5
Updated@thi.ng/compare@^2.1.12
Updated@thi.ng/dcons@^3.2.14
Updated@thi.ng/equiv@^2.1.10
Updated@thi.ng/errors@^2.2.0
Updated@thi.ng/transducers@^8.3.14