MCPcopy
hub / github.com/uuidjs/uuid / v5

Function v5

src/v5.ts:19–26  ·  view source on GitHub ↗
(
  value: string | Uint8Array,
  namespace: UUIDTypes,
  buf?: TBuf,
  offset?: number,
)

Source from the content-addressed store, hash-verified

17 offset?: number,
18): TBuf;
19function v5<TBuf extends Uint8Array = Uint8Array>(
20 value: string | Uint8Array,
21 namespace: UUIDTypes,
22 buf?: TBuf,
23 offset?: number,
24): UUIDTypes<TBuf> {
25 return v35(0x50, sha1, value, namespace, buf, offset);
26}
27
28v5.DNS = DNS;
29v5.URL = URL;

Callers 2

uuid-bin.tsFile · 0.85
v35.test.tsFile · 0.85

Calls 1

v35Function · 0.85

Tested by

no test coverage detected