
A fast GUID (globally unique identifier) generator for both browser and Node.js.
See Also:
How to use it:
1. Import the GUID Generator.
// browser
import { Guid } from "./src/guid";
// node.js
let { Guid } = require("./src/guid");2. Generate a unique GUID.
Guid.NewGuid(); // => bfd30af8-d07b-4e63-828a-99cabce33f82
Changelog:
03/01/2022
- delete unused files
01/19/2022
- Code optimization
11/11/2021
- Bugfix







