Skip to content

Instantly share code, notes, and snippets.

@Emilios1995
Created July 31, 2017 02:00
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 Emilios1995/5d8abdbe84bb29e0bc5525c75b05e252 to your computer and use it in GitHub Desktop.
Save Emilios1995/5d8abdbe84bb29e0bc5525c75b05e252 to your computer and use it in GitHub Desktop.
const optionalTypeRule = type => [
unlessNil(isType(type)),
(val, field) => `if ${field} is set, it must be a ${type}`
];
const validationRules = {
appDescription: [optionalTypeRule('String')]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment