date

Creates a date schema.

const Schema = v.date<TMessage>(message);

Generics

Parameters

  • message TMessage

Explanation

With date you can validate the data type of the input. If the input is not a date, you can use message to customize the error message.

Returns

Examples

The following examples show how date can be used.

Force minimum

Schema that forces a minimum date of today.

const MinDateSchema = v.pipe(v.date(), v.toMinValue(new Date()));

Validate range

Schema that validates a date in a range.

const DateRangeSchema = v.pipe(
  v.date(),
  v.minValue(new Date(2019, 0, 1)),
  v.maxValue(new Date(2020, 0, 1))
);

The following APIs can be combined with date.

Schemas

Methods

Actions

Utils

Contributors

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

  • GitHub profile picture of fabian-hiller
  • GitHub profile picture of wout-junius

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 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 luckasnix