First commit

This commit is contained in:
Aravind142857
2023-06-05 20:06:13 -05:00
commit 4e3c08d1c4
672 changed files with 179969 additions and 0 deletions

10
node_modules/bson/lib/validate_utf8.d.ts generated vendored Normal file
View File

@@ -0,0 +1,10 @@
/**
* Determines if the passed in bytes are valid utf8
* @param bytes - An array of 8-bit bytes. Must be indexable and have length property
* @param start - The index to start validating
* @param end - The index to end validating
*/
export declare function validateUtf8(bytes: {
[index: number]: number;
}, start: number, end: number): boolean;
//# sourceMappingURL=validate_utf8.d.ts.map