Finds the closest suggestion using shortest Levenshtein Distance
from fastest-levenshtein npm package
Exposes 'getClosest' function which takes two parameters, the inputted incorrect string, and an array of correct possibilities.
add "@velocitycareerlabs/string-matching": "0.5.0-build" to package.json
const { getClosest } = require('@velocitycareerlabs/string-matching');
const closestLevenshteinDistance = await getClosest('fast', ['slow', 'faster', 'fastest']);
faster