Ensures an array contains at least one element
The array to validate
The original array, typed as NonEmptyArray
When the array is empty or not an array
// Successful validationconst items = validate([1, 2, 3]);// items is now typed as NonEmptyArray<number>// Throws NonEmptyArrayErrortry { const empty = validate([]);} catch (error) { if (error instanceof NonEmptyArrayError) { // Handle empty array error }} Copy
// Successful validationconst items = validate([1, 2, 3]);// items is now typed as NonEmptyArray<number>// Throws NonEmptyArrayErrortry { const empty = validate([]);} catch (error) { if (error instanceof NonEmptyArrayError) { // Handle empty array error }}
Ensures an array contains at least one element