Skip to content

Commit

Permalink
Updated readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roee Shapira committed Feb 1, 2020
1 parent ad8a796 commit 1599d4f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Lazy Piping

[![Build Status](https://travis-ci.org/5c077m4n/iterable-ops.svg?branch=master)](https://travis-ci.org/5c077m4n/iterable-ops)
[![Coverage Status](https://coveralls.io/repos/github/5c077m4n/iterable-ops/badge.svg?branch=master)](https://coveralls.io/github/5c077m4n/iterable-ops?branch=master)
[![Known Vulnerabilities](https://snyk.io/test/github/5c077m4n/iterable-ops/badge.svg?targetFile=package.json)](https://snyk.io/test/github/5c077m4n/iterable-ops?targetFile=package.json)

# Lazy Piping

A tiny package to allow lazy operations on all iterators. The whole point of this package is to allow saving of operations and the only calculating when needed (by calling the `.get()` function).

Just type into the terminal:
Expand All @@ -26,8 +26,12 @@ import { from, map, filter } from 'lazy-piping';

or (as a script in your HTML):

```html
<script src="https://unpkg.com/lazy-piping@latest/packages/lazy-piping.umd/src/index.js"></script>
```
https://unpkg.com/lazy-piping@latest/packages/lazy-piping.umd/src/index.js

```javascript
const { from, map, filter } = LazyPiping;
```

And you're good to go!
Expand Down

0 comments on commit 1599d4f

Please sign in to comment.