Fixed error prone checking etc in codebase

This commit is contained in:
Angelos Chalaris
2018-02-04 17:48:07 +02:00
parent 89f572efbc
commit c6c49ab567
18 changed files with 25 additions and 25 deletions

View File

@ -16,5 +16,5 @@ const remove = (arr, func) =>
```
```js
remove([1, 2, 3, 4], n => n % 2 == 0); // [2, 4]
remove([1, 2, 3, 4], n => n % 2 === 0); // [2, 4]
```