@esfx/async-iter-query
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

@esfx/async-iter-query

An iteration and query API for ECMAscript async-iterables.

Overview

Installation

npm i @esfx/async-iter-query

Usage

// TypeScript
import { AsyncQuery } from "@esfx/async-iter-query";

// JavaScript (CommonJS)
const { AsyncQuery } = require("@esfx/async-iter-query");

let q = AsyncQuery
  .from(books)
  .filter(book => book.author === "Alice")
  .groupBy(book => book.releaseYear);

API

You can read more about the API here.

/@esfx/async-iter-query/

    Package Sidebar

    Install

    npm i @esfx/async-iter-query

    Weekly Downloads

    0

    Version

    1.0.2

    License

    Apache-2.0

    Unpacked Size

    472 kB

    Total Files

    8

    Last publish

    Collaborators

    • rbuckton