Last active
April 12, 2016 00:01
-
-
Save grabcode/492e2b35f61a4a1870342a2ccafe3d5d to your computer and use it in GitHub Desktop.
validCandidate function
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
function validCandidate(languages) { | |
let validCandidate = false | |
let languageRegex = /script$/ | |
if(Array.isArray(languages)) { | |
validCandidate = !!languages.filter( (language)=> languageRegex.test(language) ).length | |
} else if (typeof languages == 'string') { | |
validCandidate = languageRegex.test(languages) | |
} | |
return validCandidate | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment