Travis build: 1354

This commit is contained in:
30secondsofcode
2018-01-23 19:03:54 +00:00
parent 0e2475f480
commit 3107a255fd
3 changed files with 29 additions and 2 deletions

View File

@ -10,5 +10,5 @@ const over = (...fns) => (...args) => fns.map(fn => fn.apply(null, args));
```js
const minMax = over(Math.min, Math.max);
minMax(1,2,3,4,5); // [1,5]
minMax(1, 2, 3, 4, 5); // [1,5]
```