Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
luvies committed Feb 28, 2019
1 parent b0e30b5 commit aafddf6
Show file tree
Hide file tree
Showing 6 changed files with 83 additions and 83 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This module is meant to provide memory-efficient lazy-evaluation iteration for i
Use the following import:

```ts
import { Lazy } from 'https://deno.land/x/lazy@v1.2.0/mod.ts';
import { Lazy } from 'https://deno.land/x/lazy@v1.3.0/mod.ts';
```

Make sure the `@v{version}` tag is the correct one you want. I'd recommend against master, as it could change without notice & might be broken (although I will try not to break it).
Expand Down Expand Up @@ -74,12 +74,12 @@ The `Lazy` class is the root of the module, all things come from it and are deri

```ts
// Static method import.
import { Lazy } from 'https://deno.land/x/lazy@v1.2.0/mod.ts';
import { Lazy } from 'https://deno.land/x/lazy@v1.3.0/mod.ts';

const iterable = Lazy.from([1, 2, 3, 4, 5]);

// Direct function import.
import { from } from 'https://deno.land/x/lazy@v1.2.0/mod.ts';
import { from } from 'https://deno.land/x/lazy@v1.3.0/mod.ts';

const iterable = from([1, 2, 3, 4, 5]);
```
Expand Down
Loading

0 comments on commit aafddf6

Please sign in to comment.