/** * Generates a 32bit hash representation of the value passed, similar to md5. * This code is browser safe and works on all runtimes, as opposed to the * WebCrypto.subtle api, which only works on greenfield browsers in HTTPS. * * @param {any} input Value to be hashed * * @returns {number} * @category Data */ export default function hash(input: any): number;