UNPKG

happypack

Version:

webpack speed booster, makes you happy!

11 lines (8 loc) 356 B
import {createValidator, required, maxLength, integer, oneOf} from 'utils/validation'; export const colors = ['Blue', 'Fuchsia', 'Green', 'Orange', 'Red', 'Taupe']; const widgetValidation = createValidator({ color: [required, oneOf(colors)], sprocketCount: [required, integer], owner: [required, maxLength(30)] }); export default widgetValidation;