1
0
Fork 0
mirror of https://github.com/xevidos/codiad.git synced 2025-03-15 04:54:31 +01:00
codiad/plugins/Codiad-Collaborative-master/node_modules/base64id
2018-08-08 10:12:29 -04:00
..
lib Updated Ace Editor, Started rewrite of collaborative plugin, added ability to disable and enable editors, Started adding some php variables to javascript. 2018-08-08 10:12:29 -04:00
.npmignore Updated Ace Editor, Started rewrite of collaborative plugin, added ability to disable and enable editors, Started adding some php variables to javascript. 2018-08-08 10:12:29 -04:00
LICENSE Updated Ace Editor, Started rewrite of collaborative plugin, added ability to disable and enable editors, Started adding some php variables to javascript. 2018-08-08 10:12:29 -04:00
package.json Updated Ace Editor, Started rewrite of collaborative plugin, added ability to disable and enable editors, Started adding some php variables to javascript. 2018-08-08 10:12:29 -04:00
README.md Updated Ace Editor, Started rewrite of collaborative plugin, added ability to disable and enable editors, Started adding some php variables to javascript. 2018-08-08 10:12:29 -04:00

base64id

Node.js module that generates a base64 id.

Uses crypto.randomBytes when available, falls back to unsafe methods for node.js <= 0.4.

To increase performance, random bytes are buffered to minimize the number of synchronous calls to crypto.randomBytes.

Installation

$ npm install base64id

Usage

var base64id = require('base64id');

var id = base64id.generateId();