Skip to content

Instantly share code, notes, and snippets.

@grabcode
Last active April 12, 2016 00:01
Show Gist options
  • Save grabcode/492e2b35f61a4a1870342a2ccafe3d5d to your computer and use it in GitHub Desktop.
Save grabcode/492e2b35f61a4a1870342a2ccafe3d5d to your computer and use it in GitHub Desktop.
validCandidate function
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