Files
copilot-toolbox-template-123/node_modules/@lukeed/csprng/browser/index.js
2026-01-09 14:52:46 +00:00

5 lines
103 B
JavaScript

function random(len) {
return crypto.getRandomValues(new Uint8Array(len));
}
exports.random = random;