UNPKG

aurelia-validatejs

Version:

This is a plugin that will allow using validate.js in your Aurelia application for expressive validation.

12 lines (10 loc) 142 B
export class PASSING_RULE { validate() { return undefined; } } export class FAILING_RULE { validate() { return 'failed'; } }