Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation fixes #52

Merged
merged 3 commits into from
Dec 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# IterTools Typescript Change Log

## v1.28.1 - 2024-12-23

Documentation fixed.

## v1.28.0 - 2024-12-22

### New features
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ const result2 = await AsyncStream.of([1, 1, 2, 2, 3, 4, 5].map((x) => Promise.re
**Pipe Iteration Tools Example**

```typescript
import { createPipe, createAsyncPipe } from 'itertools-ts';
import { createPipe } from 'itertools-ts';

const pipe = createPipe(
set.distinct<number>,
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "itertools-ts",
"version": "1.28.0",
"version": "1.28.1",
"description": "Extended itertools port for TypeScript and JavaScript. Provides a huge set of functions for working with iterable collections (including async ones)",
"license": "MIT",
"repository": {
@@ -64,7 +64,8 @@
"async-loops",
"looping",
"pipe",
"pipes"
"pipes",
"pipeline"
],
"devDependencies": {
"@borderless/ts-scripts": "^0.13.6",
1 change: 0 additions & 1 deletion src/pipe.ts
Original file line number Diff line number Diff line change
@@ -4,7 +4,6 @@ import {
PipeOperation,
PipeOperationSequence,
} from "./types";
import { reduce } from "./index";

/**
* Creates a synchronous pipe that processes an input through a sequence of operations.