Created
October 14, 2013 13:28
-
-
Save carlescliment/6975631 to your computer and use it in GitHub Desktop.
you never need multiple ifs
This file contains hidden or 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 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