Travis build: 1393

This commit is contained in:
30secondsofcode
2018-01-24 12:41:38 +00:00
parent c5eb996006
commit e141cce683
3 changed files with 68 additions and 2 deletions

View File

@ -5,7 +5,7 @@ Creates a function that invokes `fn` with `partials` appended to the arguments i
Use the spread operator (`...`) to append `partials` to the list of arguments of `fn`.
```js
const partialRight = (fn, ...partials) => (...args) => fn( ...args, ...partials);
const partialRight = (fn, ...partials) => (...args) => fn(...args, ...partials);
```
```js