source: imaps-frontend/node_modules/nanoid/async/index.native.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 814 bytes
Line 
1import { getRandomBytesAsync } from 'expo-random'
2import { urlAlphabet } from '../url-alphabet/index.js'
3let random = getRandomBytesAsync
4let customAlphabet = (alphabet, defaultSize = 21) => {
5 let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
6 let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
7 let tick = (id, size = defaultSize) =>
8 random(step).then(bytes => {
9 let i = step
10 while (i--) {
11 id += alphabet[bytes[i] & mask] || ''
12 if (id.length === size) return id
13 }
14 return tick(id, size)
15 })
16 return size => tick('', size)
17}
18let nanoid = (size = 21) =>
19 random(size).then(bytes => {
20 let id = ''
21 while (size--) {
22 id += urlAlphabet[bytes[size] & 63]
23 }
24 return id
25 })
26export { nanoid, customAlphabet, random }
Note: See TracBrowser for help on using the repository browser.