• Type guard that checks if an array contains at least one element

    Type Parameters

    • T

    Parameters

    • results: T[]

      The array to validate

    Returns results is NonEmptyArray<T>

    A type predicate indicating if the array is non-empty

    const items = [1, 2, 3];
    if (safeValidate(items)) {
    // items is typed as NonEmptyArray<number> here
    const first = items[0]; // Safe access
    items.map(x => x * 2); // Safe to use array methods
    }

    const empty: string[] = [];
    if (!safeValidate(empty)) {
    // Handle empty array case
    }
    • Acts as a TypeScript type guard, providing type safety for non-empty arrays
    • Useful for conditional logic where array emptiness needs to be checked
    • Does not throw errors, making it safe for validation flows
    • Checks both for Array type and non-zero length