Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 21, 2022 15:44
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 parzibyte/e651f1b0500097279e535dd67da614ce to your computer and use it in GitHub Desktop.
Save parzibyte/e651f1b0500097279e535dd67da614ce to your computer and use it in GitHub Desktop.
inputValidator: pago => {
if (!pago || pago < TOTAL_VENTA) {
return "El pago debe ser mayor o igual al total de la venta";
} else {
return undefined;
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment