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

import { getRandomBytesAsync } from 'expo-random'
import { urlAlphabet } from '../url-alphabet/index.js'
let random = getRandomBytesAsync
let customAlphabet = (alphabet, defaultSize = 21) => {
  let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
  let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
  let tick = (id, size = defaultSize) =>
    random(step).then(bytes => {
      let i = step
      while (i--) {
        id += alphabet[bytes[i] & mask] || ''
        if (id.length >= size) return id
      }
      return tick(id, size)
    })
  return size => tick('', size)
}
let nanoid = (size = 21) =>
  random((size |= 0)).then(bytes => {
    let id = ''
    while (size--) {
      id += urlAlphabet[bytes[size] & 63]
    }
    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).