Skip to content

Instantly share code, notes, and snippets.

@mdmoin7
Created April 27, 2019 04:48
Show Gist options
  • Save mdmoin7/2ff10f103b56b57720f52b5ee9393e84 to your computer and use it in GitHub Desktop.
Save mdmoin7/2ff10f103b56b57720f52b5ee9393e84 to your computer and use it in GitHub Desktop.
const errorMessages = {
required: () => 'This field is required',
pattern: () => 'Incorrect format',
minlength: (param) => `Min chars required is ${param.requiredLength}`,
maxlength: (param) => `Max chars allowed is ${param.requiredLength}`
};
export const getErrorMsg = (err, errObj) => {
return errorMessages[err](errObj);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment