Skip to content

Instantly share code, notes, and snippets.

@bitfishxyz
Created May 3, 2020 12:03
Show Gist options
  • Save bitfishxyz/cdc35cc24e91759971ad70a27cf099a8 to your computer and use it in GitHub Desktop.
Save bitfishxyz/cdc35cc24e91759971ad70a27cf099a8 to your computer and use it in GitHub Desktop.
var compose2 = function() {
var validator = new Validator();
const data2 = {
role: 'register',
job: 'FE'
};
validator.add(data2.role, 'checkRole');
validator.add(data2.job, 'checkJob');
const result = validator.check();
return result;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment