Housekeeping, tag and build

This commit is contained in:
Angelos Chalaris
2017-12-16 13:56:55 +02:00
parent a3110916d1
commit 6eb818309e
7 changed files with 92 additions and 23 deletions

View File

@ -5,6 +5,6 @@ You can omit `start` to use a default value of `0`.
```js
const initializeArrayRange = (end, start = 0) =>
Array.from({ length: end - start }).map((v, i) => i + start)
Array.from({ length: end - start }).map((v, i) => i + start);
// initializeArrayRange(5) -> [0,1,2,3,4]
```