1.0.2 • Published 8 years ago

shimo-guid v1.0.2

Weekly downloads
35
License
ISC
Repository
github
Last release
8 years ago

guid

A Guid generator and validator.

THIS 'GUID' FORMAT LIKE 'Il9Bq9ZXtojcdPNm'(REG: /^A-Za-z0-9+$/).

Example && APIS

const Guid = require('shimo-guid');

Guid.isGuid('Il9Bq9ZXtojcdPNm'); // true
Guid.fromInt(10000); // 'lS', the first argument must be an unsigned integer
Guid.toInt('BAC'); // 1 * 62 * 62 + 0 + 2 = 3846
Guid.new(16); // generate a new one, default length is 16

To begin

  1. Install it:

    $ npm install shimo-guid --save
  2. Require it and use:

    var Guid = require('shimo-guid');
    var guid = Guid.new();

License

MIT © ChuXin Tech