UUID as a buffer.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
TheoryOfNekomata 2d7128e43c Initial commit 2 yıl önce
src Initial commit 2 yıl önce
test Initial commit 2 yıl önce
.eslintrc Initial commit 2 yıl önce
.gitignore Initial commit 2 yıl önce
LICENSE Initial commit 2 yıl önce
README.md Initial commit 2 yıl önce
package.json Initial commit 2 yıl önce
pridepack.json Initial commit 2 yıl önce
tsconfig.eslint.json Initial commit 2 yıl önce
tsconfig.json Initial commit 2 yıl önce
yarn.lock Initial commit 2 yıl önce

README.md

uuid-buffer

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.

Usage

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);

License

See LICENSE file for details.