### Description It's currently not possible to validate time values like `12:34` using class-validator. These may come the [time input HTML element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time). ### Proposed solution Add a new `@IsTime` validator which calls the `isTime` function from validator.js.
Description
It's currently not possible to validate time values like
12:34using class-validator. These may come the time input HTML element.Proposed solution
Add a new
@IsTimevalidator which calls theisTimefunction from validator.js.