@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
9 lines • 426 B
TypeScript
/**
* Note: produces valid hash values for `null` and `undefined`.
* @param {string|null|undefined} string
* @param {number} [start=0]
* @param {number} [length] how many characters to hash, defaults to the rest of the string from `start`
* @returns {number}
*/
export function computeStringHash(string: string | null | undefined, start?: number, length?: number): number;
//# sourceMappingURL=computeStringHash.d.ts.map