nonEmpty

Creates a non-empty validation action.

const Action = v.nonEmpty<TInput, TMessage>(requirement, message);

Generics

Parameters

  • message TMessage

Explanation

With nonEmpty you can validate that a string or array is non-empty. If the input is empty, you can use message to customize the error message.

Returns

Examples

The following examples show how nonEmpty can be used.

String schema

Schema to validate that a string is non-empty.

const StringSchema = v.pipe(
  v.string(),
  v.nonEmpty('The string should contain at least one character.')
);

Array schema

Schema to validate that an array is non-empty.

const ArraySchema = v.pipe(
  v.array(v.number()),
  v.nonEmpty('The array should contain at least one item.')
);

The following APIs can be combined with nonEmpty.

Schemas

Methods

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 Thanaen
  • GitHub profile picture of KATT
  • GitHub profile picture of osdiab
  • GitHub profile picture of ruiaraujo012
  • GitHub profile picture of hyunbinseo
  • GitHub profile picture of F0rce
  • GitHub profile picture of caegdeveloper
  • GitHub profile picture of seahindeniz