Skip to content
This repository has been archived by the owner on Jul 4, 2019. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
0xF6 authored Jun 7, 2018
1 parent 2442ec7 commit 5b16844
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# linqable.ts 1.6 💥
# linqable.ts 1.7 💥
LINQ 💥 implementation library for TypeScript ❄️


Expand All @@ -10,6 +10,7 @@ LINQ 💥 implementation library for TypeScript ❄️

### Install
- `yarn add linqable.ts`
or
- `npm i linqable.ts`

### Build ☄️
Expand Down Expand Up @@ -378,7 +379,7 @@ let array = [0, 1, 2, 3, 4];
/* ... */

array.Lag(/*step*/2, /*defaultValue*/0, (a, b) => { return { A: a, B: b}; })
//returned -> [{"A":0,"B":0},{"A":1,"B":0},{"A":2},{"A":3},{"A":4,"B":0}]
//returned -> [{"A":0,"B":0},{"A":1,"B":0},{"A":2,"B":0},{"A":3,"B":1},{"A":4,"B":2}]
```
Expand Down

0 comments on commit 5b16844

Please sign in to comment.