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

Commit 5b16844

Browse files
authored
Update README.md
1 parent 2442ec7 commit 5b16844

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# linqable.ts 1.6 💥
1+
# linqable.ts 1.7 💥
22
LINQ 💥 implementation library for TypeScript ❄️
33

44

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

1111
### Install
1212
- `yarn add linqable.ts`
13+
or
1314
- `npm i linqable.ts`
1415

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

380381
array.Lag(/*step*/2, /*defaultValue*/0, (a, b) => { return { A: a, B: b}; })
381-
//returned -> [{"A":0,"B":0},{"A":1,"B":0},{"A":2},{"A":3},{"A":4,"B":0}]
382+
//returned -> [{"A":0,"B":0},{"A":1,"B":0},{"A":2,"B":0},{"A":3,"B":1},{"A":4,"B":2}]
382383
```
383384
384385

0 commit comments

Comments
 (0)