Created
September 15, 2020 16:37
-
-
Save alamenai/bdc69a10e464ec151a480bfbe85890ab to your computer and use it in GitHub Desktop.
Regular expression ( RegEx ) for images and videos
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
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