• given a potentially partial prefix like hell, this finds the matching name in the map, but only if it is unique!

    Parameters

    • prefix: string
    • keys: readonly string[]

    Returns undefined | string

    findByPrefixIfUnique('hell', { 'hello', 'bar' }) // => 'hello'
    findByPrefixIfUnique('hell', { 'hello', 'hell' }) // => 'hell' (full match)
    findByPrefixIfUnique('h', { 'hello', 'hell' }) // => undefined (not unique)
    findByPrefixIfUnique('', { 'hello', 'hell' }) // => undefined (empty prefix)