This commit is contained in:
Andras Schmelczer 2024-12-12 22:18:09 +00:00
parent 9ce8245abc
commit 476c0ed672
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C

9
plugin/src/utils.ts Normal file
View file

@ -0,0 +1,9 @@
// https://stackoverflow.com/questions/7616461/generate-a-hash-from-string-in-javascript
export function hash(content: Uint8Array): string {
let hash = 0;
for (let i = 0; i < content.length; i++) {
hash = (hash << 5) - hash + content[i];
hash |= 0; // convert to 32bit integer
}
return hash.toString(64);
}