Skip to content

Instantly share code, notes, and snippets.

@davidchc
Created July 10, 2017 17:43
Show Gist options
  • Save davidchc/bdd1322b95ff8a76e9a1b06360533572 to your computer and use it in GitHub Desktop.
Save davidchc/bdd1322b95ff8a76e9a1b06360533572 to your computer and use it in GitHub Desktop.
var ValidateForm = function(){
var m = {};
m.empty = function(field){
};
m.isset = function(field){
};
m.numeric = function(field) {
};
m.email = function(field){
};
m.between = function(field, min, max){
};
m.max = function(field, max){
};
m.min = function(field, min){
};
m.equal = function(field, value){
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment