nanoid 3.3.3 → 3.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -36,4 +36,4 @@ Supports modern browsers, IE [with Babel], Node.js and React Native.
36
36
  </a>
37
37
 
38
38
  ## Docs
39
- Read **[full docs](https://github.com/ai/nanoid#readme)** on GitHub.
39
+ Read full docs **[here](https://github.com/ai/nanoid#readme)**.
@@ -31,4 +31,4 @@ let nanoid = async (size = 21) => {
31
31
  }
32
32
  return id
33
33
  }
34
- export { nanoid, customAlphabet, random }
34
+ module.exports = { nanoid, customAlphabet, random }
package/async/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import crypto from 'crypto'
2
- import { urlAlphabet } from '../url-alphabet/index.js'
1
+ let crypto = require('crypto')
2
+ let { urlAlphabet } = require('../url-alphabet')
3
3
  let random = bytes =>
4
4
  new Promise((resolve, reject) => {
5
5
  crypto.randomFill(Buffer.allocUnsafe(bytes), (err, buf) => {
@@ -32,4 +32,4 @@ let nanoid = (size = 21) =>
32
32
  }
33
33
  return id
34
34
  })
35
- export { nanoid, customAlphabet, random }
35
+ module.exports = { nanoid, customAlphabet, random }
@@ -1,5 +1,5 @@
1
- import { getRandomBytesAsync } from 'expo-random'
2
- import { urlAlphabet } from '../url-alphabet/index.js'
1
+ let { getRandomBytesAsync } = require('expo-random')
2
+ let { urlAlphabet } = require('../url-alphabet')
3
3
  let random = getRandomBytesAsync
4
4
  let customAlphabet = (alphabet, defaultSize = 21) => {
5
5
  let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
@@ -23,4 +23,4 @@ let nanoid = (size = 21) =>
23
23
  }
24
24
  return id
25
25
  })
26
- export { nanoid, customAlphabet, random }
26
+ module.exports = { nanoid, customAlphabet, random }
package/bin/nanoid.cjs CHANGED
@@ -22,10 +22,10 @@ if (process.argv.includes('--help') || process.argv.includes('-h')) {
22
22
  -h, --help Show this help
23
23
 
24
24
  Examples
25
- $ nano --s 15
25
+ $ nanoid --s 15
26
26
  S9sBF77U6sDB8Yg
27
27
 
28
- $ nano --size 10 --alphabet abc
28
+ $ nanoid --size 10 --alphabet abc
29
29
  bcabababca`)
30
30
  process.exit()
31
31
  }
package/index.browser.js CHANGED
@@ -1,4 +1,4 @@
1
- import { urlAlphabet } from './url-alphabet/index.js'
1
+ let { urlAlphabet } = require('./url-alphabet')
2
2
  let random = bytes => crypto.getRandomValues(new Uint8Array(bytes))
3
3
  let customRandom = (alphabet, defaultSize, getRandom) => {
4
4
  let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
@@ -31,4 +31,4 @@ let nanoid = (size = 21) =>
31
31
  }
32
32
  return id
33
33
  }, '')
34
- export { nanoid, customAlphabet, customRandom, urlAlphabet, random }
34
+ module.exports = { nanoid, customAlphabet, customRandom, urlAlphabet, random }
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import crypto from 'crypto'
2
- import { urlAlphabet } from './url-alphabet/index.js'
1
+ let crypto = require('crypto')
2
+ let { urlAlphabet } = require('./url-alphabet')
3
3
  const POOL_SIZE_MULTIPLIER = 128
4
4
  let pool, poolOffset
5
5
  let fillPool = bytes => {
@@ -42,4 +42,4 @@ let nanoid = (size = 21) => {
42
42
  }
43
43
  return id
44
44
  }
45
- export { nanoid, customAlphabet, customRandom, urlAlphabet, random }
45
+ module.exports = { nanoid, customAlphabet, customRandom, urlAlphabet, random }
@@ -18,4 +18,4 @@ let nanoid = (size = 21) => {
18
18
  }
19
19
  return id
20
20
  }
21
- export { nanoid, customAlphabet }
21
+ module.exports = { nanoid, customAlphabet }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nanoid",
3
- "version": "3.3.3",
3
+ "version": "3.3.5",
4
4
  "description": "A tiny (116 bytes), secure URL-friendly unique string ID generator",
5
5
  "keywords": [
6
6
  "uuid",
@@ -11,50 +11,24 @@
11
11
  "engines": {
12
12
  "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
13
13
  },
14
+ "funding": [
15
+ {
16
+ "type": "github",
17
+ "url": "https://github.com/sponsors/ai"
18
+ }
19
+ ],
14
20
  "author": "Andrey Sitnik <andrey@sitnik.ru>",
15
21
  "license": "MIT",
16
22
  "repository": "ai/nanoid",
17
23
  "browser": {
18
24
  "./index.js": "./index.browser.js",
19
25
  "./async/index.js": "./async/index.browser.js",
20
- "./async/index.cjs": "./async/index.browser.cjs",
21
- "./index.cjs": "./index.browser.cjs"
26
+ "./async/index.cjs": "./async/index.browser.cjs"
27
+ },
28
+ "react-native": {
29
+ "./async/index.js": "./async/index.native.js"
22
30
  },
23
- "react-native": "index.js",
24
31
  "bin": "./bin/nanoid.cjs",
25
32
  "sideEffects": false,
26
- "types": "./index.d.ts",
27
- "type": "module",
28
- "main": "index.cjs",
29
- "module": "index.js",
30
- "exports": {
31
- ".": {
32
- "types": "./index.d.ts",
33
- "browser": "./index.browser.js",
34
- "require": "./index.cjs",
35
- "import": "./index.js",
36
- "default": "./index.js"
37
- },
38
- "./index.d.ts": "./index.d.ts",
39
- "./package.json": "./package.json",
40
- "./async/package.json": "./async/package.json",
41
- "./async": {
42
- "browser": "./async/index.browser.js",
43
- "require": "./async/index.cjs",
44
- "import": "./async/index.js",
45
- "default": "./async/index.js"
46
- },
47
- "./non-secure/package.json": "./non-secure/package.json",
48
- "./non-secure": {
49
- "require": "./non-secure/index.cjs",
50
- "import": "./non-secure/index.js",
51
- "default": "./non-secure/index.js"
52
- },
53
- "./url-alphabet/package.json": "./url-alphabet/package.json",
54
- "./url-alphabet": {
55
- "require": "./url-alphabet/index.cjs",
56
- "import": "./url-alphabet/index.js",
57
- "default": "./url-alphabet/index.js"
58
- }
59
- }
60
- }
33
+ "types": "./index.d.ts"
34
+ }
@@ -1,3 +1,3 @@
1
1
  let urlAlphabet =
2
2
  'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'
3
- export { urlAlphabet }
3
+ module.exports = { urlAlphabet }
@@ -1,34 +0,0 @@
1
- let random = async bytes => crypto.getRandomValues(new Uint8Array(bytes))
2
- let 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
- }
17
- let 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
- }
34
- module.exports = { nanoid, customAlphabet, random }
package/async/index.cjs DELETED
@@ -1,35 +0,0 @@
1
- let crypto = require('crypto')
2
- let { urlAlphabet } = require('../url-alphabet/index.cjs')
3
- let random = bytes =>
4
- new Promise((resolve, reject) => {
5
- crypto.randomFill(Buffer.allocUnsafe(bytes), (err, buf) => {
6
- if (err) {
7
- reject(err)
8
- } else {
9
- resolve(buf)
10
- }
11
- })
12
- })
13
- let customAlphabet = (alphabet, defaultSize = 21) => {
14
- let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
15
- let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
16
- let tick = (id, size = defaultSize) =>
17
- random(step).then(bytes => {
18
- let i = step
19
- while (i--) {
20
- id += alphabet[bytes[i] & mask] || ''
21
- if (id.length === size) return id
22
- }
23
- return tick(id, size)
24
- })
25
- return size => tick('', size)
26
- }
27
- let nanoid = (size = 21) =>
28
- random(size).then(bytes => {
29
- let id = ''
30
- while (size--) {
31
- id += urlAlphabet[bytes[size] & 63]
32
- }
33
- return id
34
- })
35
- module.exports = { nanoid, customAlphabet, random }
@@ -1,12 +0,0 @@
1
- {
2
- "type": "module",
3
- "main": "index.cjs",
4
- "module": "index.js",
5
- "react-native": {
6
- "./index.js": "./index.native.js"
7
- },
8
- "browser": {
9
- "./index.js": "./index.browser.js",
10
- "./index.cjs": "./index.browser.cjs"
11
- }
12
- }
package/index.browser.cjs DELETED
@@ -1,34 +0,0 @@
1
- let { urlAlphabet } = require('./url-alphabet/index.cjs')
2
- let random = bytes => crypto.getRandomValues(new Uint8Array(bytes))
3
- let customRandom = (alphabet, defaultSize, getRandom) => {
4
- let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
5
- let step = -~((1.6 * mask * defaultSize) / alphabet.length)
6
- return (size = defaultSize) => {
7
- let id = ''
8
- while (true) {
9
- let bytes = getRandom(step)
10
- let j = step
11
- while (j--) {
12
- id += alphabet[bytes[j] & mask] || ''
13
- if (id.length === size) return id
14
- }
15
- }
16
- }
17
- }
18
- let customAlphabet = (alphabet, size = 21) =>
19
- customRandom(alphabet, size, random)
20
- let nanoid = (size = 21) =>
21
- crypto.getRandomValues(new Uint8Array(size)).reduce((id, byte) => {
22
- byte &= 63
23
- if (byte < 36) {
24
- id += byte.toString(36)
25
- } else if (byte < 62) {
26
- id += (byte - 26).toString(36).toUpperCase()
27
- } else if (byte > 62) {
28
- id += '-'
29
- } else {
30
- id += '_'
31
- }
32
- return id
33
- }, '')
34
- module.exports = { nanoid, customAlphabet, customRandom, urlAlphabet, random }
package/index.cjs DELETED
@@ -1,45 +0,0 @@
1
- let crypto = require('crypto')
2
- let { urlAlphabet } = require('./url-alphabet/index.cjs')
3
- const POOL_SIZE_MULTIPLIER = 128
4
- let pool, poolOffset
5
- let fillPool = bytes => {
6
- if (!pool || pool.length < bytes) {
7
- pool = Buffer.allocUnsafe(bytes * POOL_SIZE_MULTIPLIER)
8
- crypto.randomFillSync(pool)
9
- poolOffset = 0
10
- } else if (poolOffset + bytes > pool.length) {
11
- crypto.randomFillSync(pool)
12
- poolOffset = 0
13
- }
14
- poolOffset += bytes
15
- }
16
- let random = bytes => {
17
- fillPool((bytes -= 0))
18
- return pool.subarray(poolOffset - bytes, poolOffset)
19
- }
20
- let customRandom = (alphabet, defaultSize, getRandom) => {
21
- let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
22
- let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
23
- return (size = defaultSize) => {
24
- let id = ''
25
- while (true) {
26
- let bytes = getRandom(step)
27
- let i = step
28
- while (i--) {
29
- id += alphabet[bytes[i] & mask] || ''
30
- if (id.length === size) return id
31
- }
32
- }
33
- }
34
- }
35
- let customAlphabet = (alphabet, size = 21) =>
36
- customRandom(alphabet, size, random)
37
- let nanoid = (size = 21) => {
38
- fillPool((size -= 0))
39
- let id = ''
40
- for (let i = poolOffset - size; i < poolOffset; i++) {
41
- id += urlAlphabet[pool[i] & 63]
42
- }
43
- return id
44
- }
45
- module.exports = { nanoid, customAlphabet, customRandom, urlAlphabet, random }
@@ -1,21 +0,0 @@
1
- let urlAlphabet =
2
- 'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'
3
- let customAlphabet = (alphabet, defaultSize = 21) => {
4
- return (size = defaultSize) => {
5
- let id = ''
6
- let i = size
7
- while (i--) {
8
- id += alphabet[(Math.random() * alphabet.length) | 0]
9
- }
10
- return id
11
- }
12
- }
13
- let nanoid = (size = 21) => {
14
- let id = ''
15
- let i = size
16
- while (i--) {
17
- id += urlAlphabet[(Math.random() * 64) | 0]
18
- }
19
- return id
20
- }
21
- module.exports = { nanoid, customAlphabet }
@@ -1,6 +0,0 @@
1
- {
2
- "type": "module",
3
- "main": "index.cjs",
4
- "module": "index.js",
5
- "react-native": "index.js"
6
- }
@@ -1,3 +0,0 @@
1
- let urlAlphabet =
2
- 'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'
3
- module.exports = { urlAlphabet }
@@ -1,6 +0,0 @@
1
- {
2
- "type": "module",
3
- "main": "index.cjs",
4
- "module": "index.js",
5
- "react-native": "index.js"
6
- }