UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

11 lines 443 B
/** * Calculate Jaro distance between two strings, this is a measure of string similarity. * Higher value means more similarity. * @param {string} first * @param {string} second * @param {number} first_length * @param {number} second_length * @return {number} */ export function string_jaro_distance(first: string, second: string, first_length: number, second_length: number): number; //# sourceMappingURL=string_jaro_distance.d.ts.map