Travis build: 1308 [cron]

This commit is contained in:
30secondsofcode
2018-01-18 20:09:27 +00:00
parent 8ca337b663
commit b76eb424c1
12 changed files with 115 additions and 47 deletions

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

@ -0,0 +1,2 @@
const atob = str => new Buffer(str, 'base64').toString('binary');
module.exports = atob