TheoryOfNekomata 2d7128e43c | 2 years ago | |
---|---|---|
src | 2 years ago | |
test | 2 years ago | |
.eslintrc | 2 years ago | |
.gitignore | 2 years ago | |
LICENSE | 2 years ago | |
README.md | 2 years ago | |
package.json | 2 years ago | |
pridepack.json | 2 years ago | |
tsconfig.eslint.json | 2 years ago | |
tsconfig.json | 2 years ago | |
yarn.lock | 2 years ago |
UUID as a Buffer.
UUIDs are 128-bit values used for identification of entities. Representing them as strings are expensive since it can incur more than 128 bits. This library will help properly represent UUID values while still having some utility methods like serialization (i.e. converting them to string representations), as well as generation according to the v4 spec.
import { Uuid } from '@theoryofnekomata/uuid-buffer';
const newUuidV4 = Uuid.v4(); // sync
let uuidStr = '1d4a8818-a773-4b52-9b6b-4db8c7fd9bf2';
// this method can accept strings, buffers, and bute arrays
const uuidFromStr = Uuid.from(uuidStr);
See LICENSE file for details.