HOME


sh-3ll 1.0
DIR:/home/medisavehealth/public_html/bright.medisavehealthcarebd.com/node_modules/levenary/
Upload File :
Current File : /home/medisavehealth/public_html/bright.medisavehealthcarebd.com/node_modules/levenary/index.mjs
import leven from 'leven';

export default function levenArray(str, array) {
  let minLeven = Number.POSITIVE_INFINITY;
  let result = undefined;
  for(const item of array) {
    const distance = leven(str, item);
    if (distance < minLeven) {
      minLeven = distance;
      result = item;
    }
  }
  return result;
}