mirror of
https://github.com/actions/setup-python.git
synced 2025-07-21 17:58:20 +02:00
Revert "Update releases/v1 with changes from master (#67)"
This reverts commit bdd6409dc1
.
This commit is contained in:
parent
bdd6409dc1
commit
39f340c482
187 changed files with 15033 additions and 6120 deletions
8
node_modules/uuid/lib/rng.js
generated
vendored
Normal file
8
node_modules/uuid/lib/rng.js
generated
vendored
Normal 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);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue