Skip to content

Instantly share code, notes, and snippets.

@copperwall
Created March 30, 2019 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save copperwall/49dd945a94a4403c12e0f646af743589 to your computer and use it in GitHub Desktop.
Save copperwall/49dd945a94a4403c12e0f646af743589 to your computer and use it in GitHub Desktop.
Form.customValidityFactory = (constraint, validationMessage = 'Invalid') => (...args) => (
constraint(...args) ? '' : validationMessage
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment