1
0
mirror of https://github.com/Azure/setup-helm.git synced 2026-07-15 04:31:37 +00:00

Added node_modules

This commit is contained in:
Anumita Shenoy
2019-10-04 12:33:12 +05:30
parent 8552a6edfe
commit d963b3fac2
345 changed files with 814538 additions and 1 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);
};