1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-python synced 2025-06-08 20:38:19 +02:00

Clean up node_modules

This commit is contained in:
Danny McCormick 2019-07-11 16:52:31 -04:00
parent b581dd4017
commit 145e800d1f
7184 changed files with 11271 additions and 1877650 deletions

16
node_modules/uuid/lib/rng.js generated vendored
View file

@ -1,8 +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);
};
// 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);
};