Fork of Jason3S/xxhash for deno
What has changed from the original?
I just changed module names.
import toUtf8 from './toUtf8';
-> import toUtf8 from './toUtf8.ts';
import {xxHash32} from "https://raw.githubusercontent.com/gnlow/deno-xxhash/master/mod.ts";
let seed = 0;
let str = 'My text to hash 😊';
let hashNum = xxHash32(str, seed);
console.log(hashNum.toString(16));