fast-hashring
Version:
A library for consistent hashing.
7 lines (5 loc) • 305 B
TypeScript
export { default as ConsistentHash } from "./consistent-hash.js";
export { default as JumpConsistentHash } from "./jump-hash.js";
// Expose the default export to match runtime default export (ConsistentHash)
import ConsistentHashDefault from "./consistent-hash.js";
export default ConsistentHashDefault;