* Returns the object with the minimum value for the specified key from an array of objects.
 * If the array is empty, returns undefined.
 * @template Obj - The type of the objects in the array. Must extend Record<string, unknown>.
 * @param {Obj[]} array - The array of objects to search.
 * @param {keyof Obj} key - The key to compare.
 * @returns {Obj | undefined} - The object with the minimum value for the specified key, or undefined if the array is empty.
 * const array = [{ id: 1, value: 10 }, { id: 2, value: 5 }, { id: 3, value: 20 }];
 * const minObject = minBy(array, key);
 * console.log(minObject); // Outputs: { id: 2, value: 5 }
 * const minObject = minBy(emptyArray, key);
 * console.log(minObject); // Outputs: undefined
export const minBy = <Obj extends Record<string, unknown>>(
  if (array.length === 0) return undefined
    (previous, current) => (previous[key] < current[key] ? previous : current),