Travis build: 1297 [cron]

This commit is contained in:
30secondsofcode
2018-01-17 20:11:19 +00:00
parent ff003c12a4
commit 2f29187eea
13 changed files with 1575 additions and 1370 deletions

15
test/hashNode/hashNode.js Normal file
View File

@ -0,0 +1,15 @@
const crypto = require('crypto');
const hashNode = val =>
new Promise(resolve =>
setTimeout(
() =>
resolve(
crypto
.createHash('sha256')
.update(val)
.digest('hex')
),
0
)
);
module.exports = hashNode