PHP 8.2.30
Preview: index.browser.js Size: 984 B
/proc/thread-self/root/home/byroehnu/.trash/node_modules11/nanoid/async/index.browser.js

let random = async bytes => crypto.getRandomValues(new Uint8Array(bytes))
let customAlphabet = (alphabet, defaultSize = 21) => {
  let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
  let step = -~((1.6 * mask * defaultSize) / alphabet.length)
  return async (size = defaultSize) => {
    let id = ''
    while (true) {
      let bytes = crypto.getRandomValues(new Uint8Array(step))
      let i = step | 0
      while (i--) {
        id += alphabet[bytes[i] & mask] || ''
        if (id.length === size) return id
      }
    }
  }
}
let nanoid = async (size = 21) => {
  let id = ''
  let bytes = crypto.getRandomValues(new Uint8Array((size |= 0)))
  while (size--) {
    let byte = bytes[size] & 63
    if (byte < 36) {
      id += byte.toString(36)
    } else if (byte < 62) {
      id += (byte - 26).toString(36).toUpperCase()
    } else if (byte < 63) {
      id += '_'
    } else {
      id += '-'
    }
  }
  return id
}
export { nanoid, customAlphabet, random }

Directory Contents

Dirs: 0 × Files: 7

Name Size Perms Modified Actions
2.63 KB lrw-r--r-- 2026-02-28 11:42:20
Edit Download
984 B lrw-r--r-- 2026-02-28 11:42:26
Edit Download
2.80 KB lrw-r--r-- 2026-02-28 11:42:22
Edit Download
1.47 KB lrw-r--r-- 2026-02-28 11:42:34
Edit Download
982 B lrw-r--r-- 2026-02-28 11:42:28
Edit Download
820 B lrw-r--r-- 2026-02-28 11:42:30
Edit Download
233 B lrw-r--r-- 2026-02-28 11:42:32
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).