Travis build: 1358 [cron]

This commit is contained in:
30secondsofcode
2018-01-23 20:11:51 +00:00
parent 6d8b3c325c
commit 7a0b8b1aaa
30 changed files with 509 additions and 36 deletions

2
test/over/over.js Normal file
View File

@ -0,0 +1,2 @@
const over = (...fns) => (...args) => fns.map(fn => fn.apply(null, args));
module.exports = over