Add utils
This commit is contained in:
parent
fe7ff5349d
commit
89156eb270
2 changed files with 14 additions and 1 deletions
9
plugin/src/utils/hash.ts
Normal file
9
plugin/src/utils/hash.ts
Normal 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(16);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue