the-tip-top-backend/node_modules/uid2
2025-10-28 00:31:47 +01:00
..
HISTORY.md flatten backend folder 2025-10-28 00:31:47 +01:00
index.js flatten backend folder 2025-10-28 00:31:47 +01:00
LICENSE flatten backend folder 2025-10-28 00:31:47 +01:00
package.json flatten backend folder 2025-10-28 00:31:47 +01:00
README.md flatten backend folder 2025-10-28 00:31:47 +01:00

uid2

NPM version

Generate unique ids. Pass in a length and it returns a string.

Installation

npm install uid2

Examples

Without a callback it is synchronous:

uid(10)
// => "hbswt489ts"

With a callback it is asynchronous:

uid(10, function (err, id) {
  if (err) throw err;
  // id => "hbswt489ts"
});

License

MIT