Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { isString } from 'exotic'

export const imageRegExp = /\.(?:jpg|gif|png|svg|jpeg|webp)$/
export const isImage = x => isString(x) && imageRegExp.test(x)
export const isImageLike = x => x.startsWith('//') || x.startsWith('http') || x.startsWith('https')