Travis build: 212 [cron]

This commit is contained in:
30secondsofcode
2018-08-10 19:56:44 +00:00
parent 93e9513c8b
commit 695a9cee04
4 changed files with 1625 additions and 1552 deletions

View File

@ -1,2 +1,3 @@
const bindKey = (context, fn, ...boundArgs) => (...args) => context[fn].apply(context, [...boundArgs, ...args]);
const bindKey = (context, fn, ...boundArgs) => (...args) =>
context[fn].apply(context, [...boundArgs, ...args]);
module.exports = bindKey;