Travis build: 210

This commit is contained in:
30secondsofcode
2018-08-10 07:50:02 +00:00
parent 8e034d48ee
commit 93e9513c8b
3 changed files with 7 additions and 10 deletions

View File

@ -6,7 +6,8 @@ Return a `function` that uses `Function.apply()` to bind `context[fn]` to `conte
Use the spread operator (`...`) to prepend any additional supplied parameters to the arguments.
```js
const bindKey = (context, fn, ...boundArgs) => (...args) => context[fn].apply(context, [...boundArgs, ...args]);
const bindKey = (context, fn, ...boundArgs) => (...args) =>
context[fn].apply(context, [...boundArgs, ...args]);
```
```js