Travis build: 212 [cron]

This commit is contained in:
30secondsofcode
2018-08-10 19:56:44 +00:00
parent 06ab879e37
commit 0ea2d452e8
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;