given a potentially partial prefix like hell, this finds the matching name in the map, but only if it is unique!
hell
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) Copy
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)
given a potentially partial prefix like
hell
, this finds the matching name in the map, but only if it is unique!