# iterable-ts

> A TypeScript library for working with iterable types

Latest version **0.1.9** (published 2017-02-22) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install iterable-ts
pnpm add iterable-ts
yarn add iterable-ts
bun add iterable-ts
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.9 |
| Published | 2017-02-22 |
| First published | 2016-08-25 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Sergey Shandar |
| Maintainers | sergeyshandar |
| Keywords | typescript, iterable, linq, lazy |

## Links

- npm: https://www.npmjs.com/package/iterable-ts
- Repository: https://github.com/sergey-shandar/iterable-ts
- Homepage: https://github.com/sergey-shandar/iterable-ts#readme
- Issues: https://github.com/sergey-shandar/iterable-ts/issues
- npm.io page: https://npm.io/package/iterable-ts

## Dependencies (1)

- [tslib](https://npm.io/package/tslib.md) ^1.5.0

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 0.1.9 (latest) — 2017-02-22
- 0.1.8 — 2017-02-21
- 0.1.7 — 2017-02-21
- 0.1.6 — 2017-02-18
- 0.1.5 — 2017-01-31
- 0.1.4 — 2016-10-04
- 0.1.3 — 2016-10-04
- 0.1.2 — 2016-10-04
- 0.1.1 — 2016-10-04
- 0.1.0 — 2016-10-04
- 0.0.2 — 2016-10-04
- 0.0.1 — 2016-08-26
- 0.0.0 — 2016-08-25

## README

# iterable-ts
A TypeScript library for working with iterable types

[![npm version](https://badge.fury.io/js/iterable-ts.svg)](https://badge.fury.io/js/iterable-ts)
[![Build Status](https://travis-ci.org/sergey-shandar/iterable-ts.svg?branch=master)](https://travis-ci.org/sergey-shandar/iterable-ts)

See also [lazy.js](http://danieltao.com/lazy.js/), [
ECMAScript This-Binding Syntax Proposal](https://github.com/tc39/proposal-bind-operator).

## Usage

```ts
import { seq, values } from "iterable-ts";

const y = seq(1, 2).flatMap(v => v * v).toArray();
const z = values([1, 2]).filter(v => v != 2);
```

---
_Source: https://npm.io/package/iterable-ts · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
