UNPKG

lightfold

Version:

lightweight scaffolding and archiving utility CLI.

14 lines (13 loc) 321 B
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; }