UNPKG

radh-ui

Version:

Stencil Component Starter

8 lines (7 loc) 236 B
export const FruitValidator = { validate: (value) => { let fruits = ['banana', 'apple', 'cherry']; return fruits.find(a => a === value) ? true : false; }, errorMessage: 'You must enter a valid fruit name' };