Housekeeping, tag and build

This commit is contained in:
Angelos Chalaris
2017-12-16 13:56:55 +02:00
parent e3c9784b10
commit e0ae406574
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]
```