Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

minDistance

import { minDistance } from "https://raw.githubusercontent.com/el3um4s/Damerau-Levenshtein/master/mod.ts";

Get the minimum Damerau-Levenshtein distance between a string and an array of strings

function minDistance(string: string, list: Array<string>): number;
§
minDistance(string: string, list: Array<string>): number
[src]

§Parameters

§
string: string
[src]
§
list: Array<string>
[src]

§Return Type

§
number
[src]