Skip to content

Instantly share code, notes, and snippets.

@Pymmog
Last active May 11, 2020 07:34
Show Gist options
  • Save Pymmog/c31f9fec32e13f2fc08827ca184c8668 to your computer and use it in GitHub Desktop.
Save Pymmog/c31f9fec32e13f2fc08827ca184c8668 to your computer and use it in GitHub Desktop.
YouTube Url Parser
const youtubeParser = (url) => {
const regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#&?]*).*/;
const match = url.match(regExp);
return match && match[7].length === 11 ? match[7] : false;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment