hashcode.d.ts 186 B

12345
  1. /**
  2. * Return a simple hash code from a string.
  3. * Source from: https://github.com/sindresorhus/fnv1a/blob/master/index.js#L25
  4. */
  5. export declare function hashcode(str: string): number;