Skip to content

Instantly share code, notes, and snippets.

@alamenai
Created September 15, 2020 16:37
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 alamenai/bdc69a10e464ec151a480bfbe85890ab to your computer and use it in GitHub Desktop.
Save alamenai/bdc69a10e464ec151a480bfbe85890ab to your computer and use it in GitHub Desktop.
Regular expression ( RegEx ) for images and videos
export const isVideo = url => (/\.(mp4|3gp|ogg|wmv|webm|flv|avi*|wav|vob*)$/i).test(url)
export const isImage = url => (/\.(gif|jpe?g|tiff?|png|webp|bmp)$/i).test(url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment