date

Creates a date schema.

// Date schema with an optional pipe
const Schema = date(pipe);

// Date schema with an optional message and pipe
const Schema = date(message, pipe);

Parameters

Explanation

With date you can validate the data type of the input and with pipe you can transform and validate the further details of the date. 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 = date([toMinValue(new Date())]);

Validate range

Schema that validates a date in a range.

const DateRangeSchema = date([
  minValue(new Date(2019, 0, 1)),
  maxValue(new Date(2020, 0, 1)),
]);

The following APIs can be combined with date.

Schemas

Methods

Transformations

Validations

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