Travis build: 692

This commit is contained in:
30secondsofcode
2018-10-26 15:37:27 +00:00
parent ccdf861848
commit e86f79b486
10 changed files with 4 additions and 19 deletions

View File

@ -8,7 +8,6 @@ Otherwise, return the product of `n` and the factorial of `n - 1`.
Throws an exception if `n` is a negative number.
```js
const factorial = n =>
n < 0
? (() => {