/** * This is a simple, *insecure* hash that's short, fast, and has no dependencies. * For algorithmic use, where security isn't needed, it's way simpler than sha1 (and all its deps) * or similar, and with a short, clean (base 36 alphanumeric) result. * Loosely based on the Java version; * @see https://stackoverflow.com/questions/6122571/simple-non-secure-hash-function-for-javascript * @function stringUnsafeHash * @param {string} str * @returns {string} */ declare const stringUnsafeHash: (str: string) => string; export default stringUnsafeHash;