Socket
Socket
Sign inDemoInstall

@thi.ng/iterators

Package Overview
Dependencies
Maintainers
1
Versions
275
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/iterators - npm Package Compare versions

Comparing version 6.1.114 to 6.1.115

8

CHANGELOG.md
# Change Log
- **Last updated**: 2024-04-11T12:32:44Z
- **Last updated**: 2024-04-20T14:42:45Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

@@ -12,2 +12,8 @@

### [6.1.115](https://github.com/thi-ng/umbrella/tree/@thi.ng/iterators@6.1.115) (2024-04-20)
#### ♻️ Refactoring
- update type usage ([c177a7c](https://github.com/thi-ng/umbrella/commit/c177a7c))
### [6.1.76](https://github.com/thi-ng/umbrella/tree/@thi.ng/iterators@6.1.76) (2023-11-09)

@@ -14,0 +20,0 @@

3

concat.d.ts

@@ -1,2 +0,3 @@

export declare function concat<T>(...inputs: (Iterable<T> | undefined | null)[]): Generator<any, void, undefined>;
import type { Nullable } from "@thi.ng/api";
export declare function concat<T>(...inputs: Nullable<Iterable<T>>[]): Generator<any, void, undefined>;
//# sourceMappingURL=concat.d.ts.map

@@ -1,2 +0,3 @@

export declare const last: <T>(input: Iterable<T>) => T | undefined;
import type { Maybe } from "@thi.ng/api";
export declare const last: <T>(input: Iterable<T>) => Maybe<T>;
//# sourceMappingURL=last.d.ts.map

@@ -1,2 +0,3 @@

export declare function mapcat<T>(fn: (...args: any[]) => Iterable<T> | undefined | null, ...inputs: Iterable<any>[]): IterableIterator<T>;
import type { Nullable } from "@thi.ng/api";
export declare function mapcat<T>(fn: (...args: any[]) => Nullable<Iterable<T>>, ...inputs: Iterable<any>[]): IterableIterator<T>;
//# sourceMappingURL=mapcat.d.ts.map
{
"name": "@thi.ng/iterators",
"version": "6.1.114",
"version": "6.1.115",
"description": "Clojure inspired, composable ES6 iterators & generators",

@@ -39,5 +39,5 @@ "type": "module",

"dependencies": {
"@thi.ng/api": "^8.10.1",
"@thi.ng/dcons": "^3.2.109",
"@thi.ng/errors": "^2.5.4"
"@thi.ng/api": "^8.11.0",
"@thi.ng/dcons": "^3.2.110",
"@thi.ng/errors": "^2.5.5"
},

@@ -235,3 +235,3 @@ "devDependencies": {

},
"gitHead": "18a0c063a7b33d790e5bc2486c106f45f663ac28\n"
"gitHead": "8339d05ecc857e529c7325a9839c0063b89e728d\n"
}

@@ -111,6 +111,6 @@ <!-- This file is generated - DO NOT EDIT! -->

```html
<script type="module" src="https://cdn.skypack.dev/@thi.ng/iterators"></script>
<script type="module" src="https://esm.run/@thi.ng/iterators"></script>
```
[Skypack documentation](https://docs.skypack.dev/)
[JSDelivr documentation](https://www.jsdelivr.com/)

@@ -117,0 +117,0 @@ For Node.js REPL:

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