@gluestack-ui/utils
Version:
Utility functions used internally in gluestack-ui
16 lines (15 loc) • 475 B
TypeScript
/**
* JS Implementation of MurmurHash2
*
* @author <a href="mailto:gary.court@gmail.com">Gary Court</a>
* @see http://github.com/garycourt/murmurhash-js
* @author <a href="mailto:aappleby@gmail.com">Austin Appleby</a>
* @see http://sites.google.com/site/murmurhash/
*
* @param {string} str ASCII only
* @param {number} seed Positive integer only
* @return {number} 32-bit positive integer hash
*
* @flow
*/
export declare const stableHash: (str: any) => string;