Skip to content

Instantly share code, notes, and snippets.

@carlescliment
Created October 14, 2013 13:28
Show Gist options
  • Save carlescliment/6975631 to your computer and use it in GitHub Desktop.
Save carlescliment/6975631 to your computer and use it in GitHub Desktop.
you never need multiple ifs
function run(url) {
var match = /(youtube|vimeo|confreaks)\.com/.exec(url);
if (match) {
return match[1];
}
return 'unknown';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment