File Explorer

/var/runtime/node_modules/@aws-sdk/node_modules/uuid/dist/esm-node

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

0 dirs
16 files
rng.js323 B · 12 lines
import crypto from 'crypto';const rnds8Pool = new Uint8Array(256); // # of random values to pre-allocate let poolPtr = rnds8Pool.length;export default function rng() {  if (poolPtr > rnds8Pool.length - 16) {    crypto.randomFillSync(rnds8Pool);    poolPtr = 0;  }   return rnds8Pool.slice(poolPtr, poolPtr += 16);}