-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.js
54 lines (45 loc) · 1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
'use strict';
/**
* Module dependencies
*/
var crypto = require('crypto');
/**
* 64 characters in the ascii range that can be used in URLs without special
* encoding.
*/
var UIDCHARS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_';
/**
* Make a Buffer into a string ready for use in URLs
*
* @param {String} bytes a Buffer containing the bytes to convert
* @returns {String} UID
* @api private
*/
function tostr(bytes) {
var r = '', i;
for (i = 0; i < bytes.length; i++) {
r += UIDCHARS[bytes[i] % 64];
}
return r;
}
/**
* Generate an Unique Id
*
* @param {Number} length The number of chars of the uid
* @param {Number} [cb] Callback for async uid generation
* @api public
*/
function uid(length, cb) {
if (typeof cb === 'undefined') {
return tostr(crypto.randomBytes(length));
} else {
crypto.randomBytes(length, function (err, bytes) {
if (err) return cb(err);
cb(null, tostr(bytes));
});
}
}
/**
* Exports
*/
module.exports = uid;