every

Creates a pipeline validation action that validates the items of an array.

const Validation = every<TInput>(requirement, message);

Generics

  • TInput extends any[]

Parameters

  • requirement (input: TInput[number], index: number, array: TInput[number][]) => boolean
  • message ErrorMessage | undefined

Explanation

With every you can freely validate the items of an array and return true if they are valid or false otherwise. If not every item matches your requirement, you can use message to customize the error message.

Returns

Examples

The following examples show how every can be used.

Sorted array schema

Schema to validate that an array is sorted.

const SortedArraySchema = array(number(), [
  every(
    (value, index, array) => index === 0 || value >= array[index - 1],
    'The numbers must be sorted in ascending order.'
  ),
]);

The following APIs can be combined with every.

Schemas

Contributors

Thanks to all the contributors who helped make this page better!

  • GitHub profile picture of fabian-hiller

Partners

Thanks to our partners who support the project ideally and financially.

Sponsors

Thanks to our GitHub sponsors who support the project financially.

  • GitHub profile picture of dailydotdev
  • GitHub profile picture of ivan-mihalic
  • GitHub profile picture of KATT
  • GitHub profile picture of osdiab
  • GitHub profile picture of Thanaen
  • GitHub profile picture of ruiaraujo012
  • GitHub profile picture of hyunbinseo
  • GitHub profile picture of caegdeveloper