@thi.ng/transducers
Advanced tools
Comparing version 8.8.6 to 8.8.7
# Change Log | ||
- **Last updated**: 2023-10-25T12:40:55Z | ||
- **Last updated**: 2023-10-30T14:31:56Z | ||
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub) | ||
@@ -12,2 +12,8 @@ | ||
### [8.8.7](https://github.com/thi-ng/umbrella/tree/@thi.ng/transducers@8.8.7) (2023-10-30) | ||
#### 🩹 Bug fixes | ||
- fix flatten1() arg types, update docs ([b7ae8eb](https://github.com/thi-ng/umbrella/commit/b7ae8eb)) | ||
## [8.8.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/transducers@8.8.0) (2023-10-11) | ||
@@ -14,0 +20,0 @@ |
@@ -0,1 +1,2 @@ | ||
import type { Nullable } from "@thi.ng/api"; | ||
import type { Transducer } from "./api.js"; | ||
@@ -14,2 +15,6 @@ /** | ||
* // [ 1, 2, 2, 3, 3, 3 ] | ||
* | ||
* // nullish inputs will be removed | ||
* [...flatten1([[1], null, [3, 3, 3]])] | ||
* // [1, 3, 3, 3] | ||
* ``` | ||
@@ -19,4 +24,4 @@ * | ||
*/ | ||
export declare function flatten1<T>(): Transducer<Iterable<T>, T>; | ||
export declare function flatten1<T>(src: Iterable<Iterable<T>>): IterableIterator<T>; | ||
export declare function flatten1<T>(): Transducer<Nullable<Iterable<T>>, T>; | ||
export declare function flatten1<T>(src: Iterable<Nullable<Iterable<T>>>): IterableIterator<T>; | ||
//# sourceMappingURL=flatten1.d.ts.map |
{ | ||
"name": "@thi.ng/transducers", | ||
"version": "8.8.6", | ||
"version": "8.8.7", | ||
"description": "Lightweight transducer implementations for ES6 / TypeScript", | ||
@@ -42,9 +42,9 @@ "type": "module", | ||
"@thi.ng/api": "^8.9.6", | ||
"@thi.ng/arrays": "^2.7.0", | ||
"@thi.ng/arrays": "^2.7.1", | ||
"@thi.ng/checks": "^3.4.6", | ||
"@thi.ng/compare": "^2.2.1", | ||
"@thi.ng/compose": "^2.1.44", | ||
"@thi.ng/compare": "^2.2.2", | ||
"@thi.ng/compose": "^2.1.45", | ||
"@thi.ng/errors": "^2.4.0", | ||
"@thi.ng/math": "^5.7.0", | ||
"@thi.ng/random": "^3.6.10" | ||
"@thi.ng/math": "^5.7.1", | ||
"@thi.ng/random": "^3.6.11" | ||
}, | ||
@@ -592,3 +592,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "502e8fa937677ff7bc4fbd0906d8c8b4b0b471e5\n" | ||
"gitHead": "bfa16829786146bd24df3cdbd44649a45a603e44\n" | ||
} |
Sorry, the diff of this file is too big to display
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
369596
320
6946
1060
Updated@thi.ng/arrays@^2.7.1
Updated@thi.ng/compare@^2.2.2
Updated@thi.ng/compose@^2.1.45
Updated@thi.ng/math@^5.7.1
Updated@thi.ng/random@^3.6.11