algorighm/hash/index.js

12 lines
220 B
JavaScript

import cityHash32 from './city-hash.js';
import murmurhash3 from './murmur-hash3.js';
import md5 from './md5.js';
import hashString from './string-hash.js';
export {
cityHash32,
murmurhash3,
md5,
hashString,
};