mirror of
https://github.com/actions/setup-node.git
synced 2026-09-12 22:06:17 +08:00
* start * Add tests * Clean up changes * Update tool-cache we consume * Use custom 7zr
9 lines
246 B
JavaScript
9 lines
246 B
JavaScript
// 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);
|
|
};
|