• Returns the min length of the given arrays

    Parameters

    • Rest...arrays: (any[] | readonly any[])[]

      the arrays to check

    Returns number

    the min length of the given arrays

    minLength(['foo', 'bar'], [1, 2, 3], []);    // 0