tool cache

This commit is contained in:
Opportunity
2019-09-30 20:33:38 +08:00
Unverified
parent 5259c2cc9d
commit d610c9a2b6
219 changed files with 10598 additions and 7819 deletions
+8
View File
@@ -0,0 +1,8 @@
// Unique ID creation requires a high quality random # generator. In node.js
// this is pretty straight-forward - we use the crypto API.
var crypto = require('crypto');
module.exports = function nodeRNG() {
return crypto.randomBytes(16);
};