first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

4
node_modules/expo-modules-core/build/uuid/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import { UUID } from './uuid.types';
declare const uuid: UUID;
export default uuid;
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/uuid/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAmB,MAAM,cAAc,CAAC;AAgCrD,QAAA,MAAM,IAAI,EAAE,IAIX,CAAC;AACF,eAAe,IAAI,CAAC"}

View File

@@ -0,0 +1,4 @@
import { UUID } from './uuid.types';
declare const uuid: UUID;
export default uuid;
//# sourceMappingURL=index.web.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.web.d.ts","sourceRoot":"","sources":["../../src/uuid/index.web.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAmB,MAAM,cAAc,CAAC;AAsBrD,QAAA,MAAM,IAAI,EAAE,IAIX,CAAC;AAEF,eAAe,IAAI,CAAC"}

View File

@@ -0,0 +1,3 @@
declare function bytesToUuid(buf: number[], offset?: number): string;
export default bytesToUuid;
//# sourceMappingURL=bytesToUuid.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"bytesToUuid.d.ts","sourceRoot":"","sources":["../../../src/uuid/lib/bytesToUuid.ts"],"names":[],"mappings":"AASA,iBAAS,WAAW,CAAC,GAAG,EAAE,MAAM,EAAE,EAAE,MAAM,CAAC,EAAE,MAAM,UA0BlD;AAED,eAAe,WAAW,CAAC"}

View File

@@ -0,0 +1,3 @@
declare function sha1(bytes: number[] | string): number[];
export default sha1;
//# sourceMappingURL=sha1.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"sha1.d.ts","sourceRoot":"","sources":["../../../src/uuid/lib/sha1.ts"],"names":[],"mappings":"AAuBA,iBAAS,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,MAAM,YAoFrC;AAED,eAAe,IAAI,CAAC"}

View File

@@ -0,0 +1,7 @@
export default function (name: string, version: number, hashfunc: (bytes: number[] | string) => number[]): {
(value: number[] | string, namespace: number[] | string, buf?: number[], offset?: number): string;
name: string;
DNS: string;
URL: string;
};
//# sourceMappingURL=v35.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"v35.d.ts","sourceRoot":"","sources":["../../../src/uuid/lib/v35.ts"],"names":[],"mappings":"AAsBA,MAAM,CAAC,OAAO,WACZ,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,MAAM,KAAK,MAAM,EAAE;YAGvC,MAAM,EAAE,GAAG,MAAM,aACb,MAAM,EAAE,GAAG,MAAM,QACtB,MAAM,EAAE,WACL,MAAM,GACd,MAAM;;;;EAkCV"}

View File

@@ -0,0 +1,24 @@
/**
* Collection of utilities used for generating Universally Unique Identifiers.
*/
export type UUID = {
/**
* A UUID generated randomly.
*/
v4: () => string;
/**
* A UUID generated based on the `value` and `namespace` parameters, which always produces the same result for the same inputs.
*/
v5: (name: string, namespace: string | number[]) => string;
namespace: typeof Uuidv5Namespace;
};
/**
* Default namespaces for UUID v5 defined in RFC 4122
*/
export declare enum Uuidv5Namespace {
dns = "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
url = "6ba7b811-9dad-11d1-80b4-00c04fd430c8",
oid = "6ba7b812-9dad-11d1-80b4-00c04fd430c8",
x500 = "6ba7b814-9dad-11d1-80b4-00c04fd430c8"
}
//# sourceMappingURL=uuid.types.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"uuid.types.d.ts","sourceRoot":"","sources":["../../src/uuid/uuid.types.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,IAAI,GAAG;IACjB;;OAEG;IACH,EAAE,EAAE,MAAM,MAAM,CAAC;IACjB;;OAEG;IACH,EAAE,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,MAAM,CAAC;IAC3D,SAAS,EAAE,OAAO,eAAe,CAAC;CACnC,CAAC;AAEF;;GAEG;AACH,oBAAY,eAAe;IAEzB,GAAG,yCAAyC;IAC5C,GAAG,yCAAyC;IAC5C,GAAG,yCAAyC;IAC5C,IAAI,yCAAyC;CAC9C"}