Created
June 10, 2020 09:48
-
-
Save velotiotech/0607238ed8dcb4e9499f1df2433ca3b4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const validator = function (message) { | |
return this.test('is-string-boolean', message, function (value) { | |
if (isEmpty(value)) { | |
return true; | |
} | |
if (['Y', 'N'].indexOf(value) !== -1) { | |
return true; | |
} else { | |
return false; | |
} | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment