source: imaps-frontend/node_modules/nanoid/async/index.browser.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: 973 bytes
Line 
1let random = async bytes => crypto.getRandomValues(new Uint8Array(bytes))
2let customAlphabet = (alphabet, defaultSize = 21) => {
3 let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
4 let step = -~((1.6 * mask * defaultSize) / alphabet.length)
5 return async (size = defaultSize) => {
6 let id = ''
7 while (true) {
8 let bytes = crypto.getRandomValues(new Uint8Array(step))
9 let i = step
10 while (i--) {
11 id += alphabet[bytes[i] & mask] || ''
12 if (id.length === size) return id
13 }
14 }
15 }
16}
17let nanoid = async (size = 21) => {
18 let id = ''
19 let bytes = crypto.getRandomValues(new Uint8Array(size))
20 while (size--) {
21 let byte = bytes[size] & 63
22 if (byte < 36) {
23 id += byte.toString(36)
24 } else if (byte < 62) {
25 id += (byte - 26).toString(36).toUpperCase()
26 } else if (byte < 63) {
27 id += '_'
28 } else {
29 id += '-'
30 }
31 }
32 return id
33}
34export { nanoid, customAlphabet, random }
Note: See TracBrowser for help on using the repository browser.