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

1.0.2 • Public • Published

@esfx/iter-query

An iteration and query API for ECMAScript iterables.

Overview

Installation

npm i @esfx/iter-query

Usage

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

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

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

API

You can read more about the API here.

Readme

Keywords

none

Package Sidebar

Install

npm i @esfx/iter-query

Weekly Downloads

1

Version

1.0.2

License

Apache-2.0

Unpacked Size

396 kB

Total Files

8

Last publish

Collaborators

  • rbuckton