@lou.codes/iterables v3.2.5
š Iterable and AsyncIterable utils.
Usage
By default, all utils are meant to be used with Iterable
values, to use
AsyncIterable
values the functions have to be imported from
@lou.codes/iterables/asynchronous
.
š¦ Node
Install @lou.codes/iterables
as a dependency:
pnpm add @lou.codes/iterables
# or
npm install @lou.codes/iterables
# or
yarn add @lou.codes/iterables
Import it and use it:
import { iterableToArray, map } from "@lou.codes/iterables";
const mapDouble = map((value: number) => value * 2);
iterableToArray(mapDouble([1, 2, 3])); // [2, 4, 6]
š¦ Deno
Import @lou.codes/iterables
using the npm:
prefix, and use it directly:
import { iterableToArray, map } from "npm:@lou.codes/iterables";
const mapDouble = map((value: number) => value * 2);
iterableToArray(mapDouble([1, 2, 3])); // [2, 4, 6]
š Browser
Import @lou.codes/iterables
using esm.sh, and use it directly:
<script type="module">
import { iterableToArray, map } from "https://esm.sh/@lou.codes/iterables";
const mapDouble = map(value => value * 2);
iterableToArray(mapDouble([1, 2, 3])); // [2, 4, 6]
</script>
Useful links
- š Documentation: TypeDoc generated documentation.
- ā³ Changelog: List of changes between versions.
- ā Tests Coverage: Coveralls page with tests coverage.
8 months ago
7 months ago
7 months ago
8 months ago
8 months ago
8 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
12 months ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago