Files
copilot-toolbox-template-121/node_modules/@lukeed/csprng/browser/index.js
2026-01-16 02:20:32 +00:00

5 lines
103 B
JavaScript

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