Travis build: 1483 [cron]

This commit is contained in:
30secondsofcode
2018-01-28 20:14:54 +00:00
parent 02544606a1
commit 9128b613e1
7 changed files with 1802 additions and 1609 deletions

View File

@ -1,8 +1,10 @@
const bindAll = (obj, ...fns) =>
fns.forEach(
fn =>
(f = obj[fn], obj[fn] = function() {
fn => (
(f = obj[fn]),
(obj[fn] = function() {
return f.apply(obj);
})
)
);
module.exports = bindAll