Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ThatGuySam
Created June 15, 2020 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThatGuySam/e328f5df4bd7f83a9ce5570eb6adf705 to your computer and use it in GitHub Desktop.
Save ThatGuySam/e328f5df4bd7f83a9ce5570eb6adf705 to your computer and use it in GitHub Desktop.
function getURLType ( url ) {
if (url.match(/Youtube URL Regex/g)) return 'youtube'
if (url.match(/MP4 URL Regex/g)) return 'mp4'
// Otherwise
return 'image'
}
const urlType = getURLType (url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment